Skip to content

Commit d5e35e8

Browse files
committed
Fix my packaging
1 parent 090a2b1 commit d5e35e8

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
com.github.danrabbit.nimbus (0.1.1) xenial; urgency=medium
2+
3+
* Fix Debian packaging
4+
5+
-- Daniel Fore <daniel@Yoga> Tue, 02 May 2017 09:49:44 -0700
6+
17
com.github.danrabbit.nimbus (0.1.0) xenial; urgency=low
28

39
* Initial Release.

debian/rules

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,20 @@
1010
#export DH_VERBOSE=1
1111

1212
%:
13-
dh $@
13+
dh $@
1414

15+
override_dh_auto_clean:
16+
rm -rf debian/build
17+
18+
override_dh_auto_configure:
19+
mkdir -p debian/build
20+
cd debian/build && meson --prefix=/usr ../..
21+
22+
override_dh_auto_build:
23+
cd debian/build && ninja -v
24+
25+
override_dh_auto_test:
26+
cd debian/build && ninja test
27+
28+
override_dh_auto_install:
29+
cd debian/build && DESTDIR=${CURDIR}/debian/com.github.danrabbit.nimbus ninja install

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('com.github.danrabbit.nimbus', ['vala', 'c'],
2-
version: '0.1.0'
2+
version: '0.1.1'
33
)
44

55
gnome = import('gnome')

0 commit comments

Comments
 (0)