33 lines
579 B
Makefile
Executable File
33 lines
579 B
Makefile
Executable File
#!/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
|