Changeset 435 for tags/pyragua-0.2.5
- Timestamp:
- 12/27/09 21:01:54 (2 years ago)
- Files:
-
- 1 modified
-
tags/pyragua-0.2.5/debian/rules (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tags/pyragua-0.2.5/debian/rules
r434 r435 1 1 #!/usr/bin/make -f 2 # Sample debian/rules that uses debhelper. 3 # This file is public domain software, originally written by Joey Hess. 4 # 5 # This version is for packages that are architecture independent. 2 6 3 build: 7 # Uncomment this to turn on verbose mode. 8 #export DH_VERBOSE=1 9 10 build: build-stamp 11 build-stamp: 12 dh_testdir 13 touch build-stamp 4 14 5 15 clean: 6 16 dh_testdir 7 17 dh_testroot 8 rm -f build-stamp configure-stamp18 rm -f build-stamp 9 19 rm -rf ../build 10 dh_clean11 20 rm -rf debian/pyragua 12 21 find . -name "*.pyc" -exec rm -rf {} \; 22 dh_clean 23 13 24 14 25 install: build 15 26 dh_testdir 16 27 dh_testroot 17 dh_ clean28 dh_prep 18 29 dh_installdirs 19 dh_compress20 dh_install21 dh_link22 30 23 binary-arch:24 25 31 binary-indep: build install 26 32 dh_testdir 27 33 dh_testroot 28 34 dh_installmenu 29 dh_icons30 35 dh_installman doc/pyragua-ide.es.1 31 36 dh_installman doc/pyragua-ide.1 32 37 dh_installchangelogs ChangeLog 33 38 dh_installdocs 39 dh_install 40 dh_icons 41 dh_link 34 42 dh_compress 35 43 dh_fixperms … … 41 49 dh_compress 42 50 51 binary-arch: build install 52 43 53 binary: binary-indep binary-arch 44 .PHONY: build clean binary-indep binary-arch binary install configure54 .PHONY: build clean binary-indep binary-arch binary install
