You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
579 B
33 lines
579 B
9 years ago
|
#!/usr/bin/make -f
|
||
|
#export DH_VERBOSE=1
|
||
|
|
||
|
|
||
|
%:
|
||
|
dh $@ --buildsystem cmake --parallel --with quilt
|
||
|
|
||
|
|
||
|
override_dh_auto_configure:
|
||
|
dh_auto_configure -- -DUSE_QT5=1 -DUSE_SYSTEM_QXT=0 -DBUILD_DESIGNER_PLUGIN=0
|
||
|
|
||
|
|
||
|
maintainer-clean:
|
||
|
$(RM) -r checkout
|
||
|
$(RM) -r backport
|
||
|
$(RM) *.build
|
||
|
$(RM) *.changes
|
||
|
$(RM) *.deb
|
||
|
$(RM) *.dsc
|
||
|
$(RM) *.tar.gz
|
||
|
$(RM) *.upload
|
||
|
|
||
|
checkout: maintainer-clean
|
||
|
git clone --depth 1 git://github.com/qterminal/qterminal.git checkout; \
|
||
|
cd checkout; \
|
||
|
cp -a ../debian .; \
|
||
|
echo ""; \
|
||
|
git log -1 | head; \
|
||
|
echo ""
|
||
|
|
||
|
backport: checkout
|
||
|
mv checkout backport
|