Skip to content

Commit

Permalink
Filled in debian/rules
Browse files Browse the repository at this point in the history
Hopefully fixing #7
  • Loading branch information
peteruithoven committed Jan 31, 2018
1 parent 1e31956 commit 50d1232
Showing 1 changed file with 16 additions and 1 deletion.
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.peteruithoven.resizer ninja install

0 comments on commit 50d1232

Please sign in to comment.