Changeset 450 for tags/pyragua-0.2.5/debian/rules
- Timestamp:
- 01/09/10 10:14:12 (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
r438 r450 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 # -*- makefile -*- 6 3 7 4 # Uncomment this to turn on verbose mode. 8 5 #export DH_VERBOSE=1 6 9 7 10 8 build: build-stamp … … 13 11 touch build-stamp 14 12 13 15 14 clean: 16 15 dh_testdir 17 16 dh_testroot 18 17 rm -f build-stamp 19 rm -rf ../build 20 find . -name "*.pyc" -exec rm -rf {} \; 21 dh_clean 22 18 find . -name '*.py[co]' | xargs rm -f 19 dh_clean 23 20 24 21 install: build 25 22 dh_testdir 26 23 dh_testroot 27 dh_prep 28 dh_installdirs 29 24 python setup.py install --root=debian/pyragua \ 25 --install-lib=usr/share/pyragua/ \ 26 --install-data=usr/share/pyragua/ \ 27 --install-scripts=usr/share/pyragua/ \ 28 --no-compile 29 30 # Build architecture-independent files here. 30 31 binary-indep: build install 31 32 dh_testdir 32 33 dh_testroot 34 dh_installchangelogs ChangeLog 33 35 dh_installmenu 34 dh_installman doc/pyragua-ide.es.135 dh_installman doc/pyragua-ide.136 dh_installchangelogs ChangeLog37 36 dh_installdocs 37 dh_installman doc/pyragua.1 38 dh_installman doc/pyragua.es.1 38 39 dh_install 40 dh_link 39 41 dh_icons 40 dh_link 41 dh_compress 42 dh_compress -X.py 42 43 dh_fixperms 44 dh_pysupport 43 45 dh_installdeb 44 dh_shlibdeps45 46 dh_gencontrol 46 47 dh_md5sums 47 48 dh_builddeb 48 dh_compress49 49 50 # Build architecture-dependent files here. 50 51 binary-arch: build install 51 52
