|
Revision 450, 1.1 KB
(checked in by junix, 2 years ago)
|
|
Actualizados los archivos del paquete debian
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/usr/bin/make -f |
|---|
| 2 | # -*- makefile -*- |
|---|
| 3 | |
|---|
| 4 | # Uncomment this to turn on verbose mode. |
|---|
| 5 | #export DH_VERBOSE=1 |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | build: build-stamp |
|---|
| 9 | build-stamp: |
|---|
| 10 | dh_testdir |
|---|
| 11 | touch build-stamp |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | clean: |
|---|
| 15 | dh_testdir |
|---|
| 16 | dh_testroot |
|---|
| 17 | rm -f build-stamp |
|---|
| 18 | find . -name '*.py[co]' | xargs rm -f |
|---|
| 19 | dh_clean |
|---|
| 20 | |
|---|
| 21 | install: build |
|---|
| 22 | dh_testdir |
|---|
| 23 | dh_testroot |
|---|
| 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. |
|---|
| 31 | binary-indep: build install |
|---|
| 32 | dh_testdir |
|---|
| 33 | dh_testroot |
|---|
| 34 | dh_installchangelogs ChangeLog |
|---|
| 35 | dh_installmenu |
|---|
| 36 | dh_installdocs |
|---|
| 37 | dh_installman doc/pyragua.1 |
|---|
| 38 | dh_installman doc/pyragua.es.1 |
|---|
| 39 | dh_install |
|---|
| 40 | dh_link |
|---|
| 41 | dh_icons |
|---|
| 42 | dh_compress -X.py |
|---|
| 43 | dh_fixperms |
|---|
| 44 | dh_pysupport |
|---|
| 45 | dh_installdeb |
|---|
| 46 | dh_gencontrol |
|---|
| 47 | dh_md5sums |
|---|
| 48 | dh_builddeb |
|---|
| 49 | |
|---|
| 50 | # Build architecture-dependent files here. |
|---|
| 51 | binary-arch: build install |
|---|
| 52 | |
|---|
| 53 | binary: binary-indep binary-arch |
|---|
| 54 | .PHONY: build clean binary-indep binary-arch binary install |
|---|