blob: 58f186e6d38ff9685376df6054dd9242893b6707 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/make -f
export PYBUILD_NAME=gallery-dl
export PYBUILD_DISABLE_python3=test
export SYSCONFDIR=/etc
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_configure:
make
dh_auto_configure
override_dh_auto_clean:
make clean
dh_auto_clean
override_dh_clean:
rm -rf gallery_dl.egg-info
dh_clean
|