Skip to content

Commit 50d1232

Browse files
committed
Filled in debian/rules
Hopefully fixing #7
1 parent 1e31956 commit 50d1232

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

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.peteruithoven.resizer ninja install

0 commit comments

Comments
 (0)