blob: 4533d3536bd36c56bcad2d35175e34ee11a1b4a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/make -f
dfsg:
# no origin known and no source available
rm -f irker-logo.png
%:
dh ${@} --with python3
override_dh_auto_build:
DESTDIR="$(CURDIR)/debian/irker" dh_auto_build
override_dh_auto_install:
DESTDIR="$(CURDIR)/debian/irker" dh_auto_install
cp irkerhook.py debian/irker/usr/bin/irkerhook
override_dh_installchangelogs:
dh_installchangelogs NEWS
|