blob: 8db29da31663ecd67ae7442e37dc3b5994dc0707 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
DESTDIR := ${CURDIR}/debian/xfce4-panel-profiles
%:
dh $@ --with python3
override_dh_auto_configure:
./configure --prefix=/usr
override_dh_auto_install:
dh_auto_install --destdir=$(DESTDIR)
find $(DESTDIR)/usr/share -type f -exec chmod a-x '{}' ';'
rm $(DESTDIR)/usr/share/doc/xfce4-panel-profiles/COPYING \
$(DESTDIR)/usr/share/doc/xfce4-panel-profiles/INSTALL
override_dh_installchangelogs:
DEB_BUILD_OPTIONS=notrimdch dh_installchangelogs NEWS
|