This adds a "contrib/cutycapt" subdirectory which contains files needed to build .deb packages, which should work at least with Debian Lenny (or newer) and Ubuntu Hardy (or newer). For the moment this has been only tested on x86 and amd64 architectures, but should work everywhere QtWebKit does.
60 lines
991 B
Makefile
Executable file
60 lines
991 B
Makefile
Executable file
#! /usr/bin/make -f
|
|
|
|
configure: configure-stamp
|
|
configure-stamp:
|
|
dh_testdir
|
|
qmake CutyCapt.pro
|
|
touch $@
|
|
|
|
binary-indep: install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installchangelogs
|
|
# dh_installchangelogs
|
|
# dh_install
|
|
# dh_installmenu
|
|
# dh_installdebconf
|
|
# dh_installlogrotate
|
|
# dh_installemacsen
|
|
# dh_installpam
|
|
# dh_installmime
|
|
# dh_installinit
|
|
# dh_installcron
|
|
# dh_installinfo
|
|
# dh_installwm
|
|
# dh_installudev
|
|
# dh_lintian
|
|
# dh_undocumented
|
|
dh_installman
|
|
dh_link
|
|
dh_compress
|
|
dh_fixperms
|
|
# dh_perl
|
|
# dh_python
|
|
dh_installdeb
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary-arch: install
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
$(RM) build-stamp
|
|
install -g root -o root -m 755 -d $(CURDIR)/debian/cutycapt/usr/bin
|
|
install -g root -o root -m 755 CutyCapt $(CURDIR)/debian/cutycapt/usr/bin
|
|
|
|
binary: binary-arch binary-indep
|
|
|
|
build: build-stamp
|
|
|
|
build-stamp:
|
|
qmake CutyCapt.pro
|
|
$(MAKE)
|
|
touch $@
|
|
|
|
clean:
|
|
dh $@
|
|
|
|
.PHONY: build binary clean binary-arch install binary-indep configure
|