Skip to content

Commit

Permalink
fix debian package data
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc committed Jan 20, 2018
1 parent 7484abe commit bc827d0
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 6 deletions.
2 changes: 1 addition & 1 deletion data/com.github.stsdc.monitor.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<url type="help">https://github.com/stsdc/monitor/issues</url>

<releases>
​ <release version="0.3.3" date="2018-01-29">
​ <release version="0.3.4" date="2018-01-29">
​ <description>
​ <ul>
<li>Fix showing icon for some apps</li>
Expand Down
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
com.github.stsdc.monitor (0.3.4) xenial; urgency=low

* Fix showing icon for some apps
* Pressing Enter focuses on process list
* Filtering: process will be highlighted if its group has no other processes

-- Stanisław Dac <[email protected]> Sat, 20 Jan 2018 14:01:21 +0100

com.github.stsdc.monitor (0.3.2) xenial; urgency=low

* Ukrainian translation
Expand Down
6 changes: 3 additions & 3 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Source: com.github.stsdc.monitor
Section: system
Priority: extra
Maintainer: Stanisław Dac <[email protected]>
Build-Depends: cmake (>= 2.8),
cmake-elementary,
Build-Depends: meson,
appstream,
debhelper (>= 9),
libgtk-3-dev,
libglib2.0-dev,
Expand All @@ -13,7 +13,7 @@ Build-Depends: cmake (>= 2.8),
libwnck-3-dev,
libgtop2-dev


Standards-Version: 3.9.3

Package: com.github.stsdc.monitor
Expand Down
17 changes: 16 additions & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,20 @@
#export DH_VERBOSE=1

%:
dh $@
dh $@

override_dh_auto_clean:
rm -rf debian/build

override_dh_auto_configure:
mkdir -p debian/build
cd debian/build && meson --prefix=/usr ../..

override_dh_auto_build:
cd debian/build && ninja -v

override_dh_auto_test:
cd debian/build && ninja test

override_dh_auto_install:
cd debian/build && DESTDIR=${CURDIR}/debian/com.github.stsdc.monitor ninja install
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

project('com.github.stsdc.monitor', 'vala', 'c', version: '0.3.3')
project('com.github.stsdc.monitor', 'vala', 'c', version: '0.3.4')

gnome = import('gnome')
i18n = import('i18n')
Expand Down

0 comments on commit bc827d0

Please sign in to comment.