blob: b5c6e87e72cbab1c45c86f8cd4996c0735abff0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/make -f
export PYBUILD_NAME=gallery-dl
export PYBUILD_DISABLE_python3=test
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_installchangelogs:
DEB_BUILD_OPTIONS=notrimdch dh_installchangelogs CHANGELOG.md
override_dh_clean:
rm -rf gallery_dl.egg-info
dh_clean
|