genwebgallery
annotate debian/rules @ 20:332ea19d9aaf
dist tarball contains now files with root as owner
author | meillo@marmaro.de |
---|---|
date | Sat, 10 May 2008 21:47:45 +0200 |
parents | 626dacb5193e |
children | 3ce5429cd219 |
rev | line source |
---|---|
meillo@0 | 1 #!/usr/bin/make -f |
meillo@0 | 2 # -*- makefile -*- |
meillo@0 | 3 # Sample debian/rules that uses debhelper. |
meillo@0 | 4 # This file was originally written by Joey Hess and Craig Small. |
meillo@0 | 5 # As a special exception, when this file is copied by dh-make into a |
meillo@0 | 6 # dh-make output file, you may use that output file without restriction. |
meillo@0 | 7 # This special exception was added by Craig Small in version 0.37 of dh-make. |
meillo@0 | 8 |
meillo@0 | 9 # Uncomment this to turn on verbose mode. |
meillo@0 | 10 #export DH_VERBOSE=1 |
meillo@0 | 11 |
meillo@0 | 12 |
meillo@12 | 13 build: |
meillo@0 | 14 |
meillo@0 | 15 clean: |
meillo@0 | 16 dh_testdir |
meillo@0 | 17 dh_testroot |
meillo@0 | 18 dh_clean |
meillo@0 | 19 |
meillo@12 | 20 install: |
meillo@0 | 21 dh_testdir |
meillo@0 | 22 dh_testroot |
meillo@0 | 23 dh_clean -k |
meillo@0 | 24 dh_installdirs |
meillo@0 | 25 |
meillo@0 | 26 # Add here commands to install the package into debian/genwebgallery. |
meillo@0 | 27 $(MAKE) DESTDIR=$(CURDIR)/debian/genwebgallery install |
meillo@0 | 28 |
meillo@0 | 29 |
meillo@0 | 30 # Build architecture-independent files here. |
meillo@12 | 31 binary-indep: install |
meillo@0 | 32 dh_testdir |
meillo@0 | 33 dh_testroot |
meillo@9 | 34 dh_installchangelogs ChangeLog |
meillo@0 | 35 dh_installdocs |
meillo@12 | 36 # dh_installexamples |
meillo@0 | 37 # dh_install |
meillo@0 | 38 # dh_installmenu |
meillo@0 | 39 # dh_installdebconf |
meillo@0 | 40 # dh_installmime |
meillo@0 | 41 # dh_installinit |
meillo@0 | 42 dh_installman |
meillo@12 | 43 # dh_link |
meillo@12 | 44 # dh_strip |
meillo@0 | 45 dh_compress |
meillo@0 | 46 dh_fixperms |
meillo@0 | 47 # dh_perl |
meillo@0 | 48 # dh_makeshlibs |
meillo@0 | 49 dh_installdeb |
meillo@12 | 50 # dh_shlibdeps |
meillo@0 | 51 dh_gencontrol |
meillo@0 | 52 dh_md5sums |
meillo@0 | 53 dh_builddeb |
meillo@0 | 54 |
meillo@0 | 55 # Build architecture-dependent files here. |
meillo@12 | 56 binary-arch: |
meillo@0 | 57 |
meillo@12 | 58 binary: binary-indep |
meillo@12 | 59 |
meillo@0 | 60 .PHONY: build clean binary-indep binary-arch binary install configure |