- Timestamp:
- Aug 9, 2010, 1:51:42 AM (15 years ago)
- Location:
- pbconf/devel/ProjectBuilder/deb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pbconf/devel/ProjectBuilder/deb/copyright
r418 r1081 7 7 Upstream Authors: Bruno Cornec <bruno@project-builder.org> 8 8 9 Copyright 2010 Bruno Cornec <bruno@project-builder.org> 9 10 Copyright: 10 11 … … 24 25 25 26 On Debian systems, the complete text of the GNU General 26 Public License can be found in `/usr/share/common-licenses/GPL '.27 Public License can be found in `/usr/share/common-licenses/GPL-2'. -
pbconf/devel/ProjectBuilder/deb/rules
r918 r1081 10 10 #export DH_VERBOSE=1 11 11 12 # If set to a true value then MakeMaker's prompt function will 13 # always return the default without waiting for user input. 14 export PERL_MM_USE_DEFAULT=1 15 16 ifndef PERL 17 PERL = /usr/bin/perl 18 endif 19 12 20 # Define package name variable for a one-stop change. 13 21 PACKAGE_NAME = PBREALPKG 14 15 # These are used for cross-compiling and for saving the configure script16 # from having to guess our platform (since we know it already)17 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)18 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)19 20 CFLAGS = -Wall -g21 22 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))23 CFLAGS += -O024 else25 CFLAGS += -O226 endif27 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))28 INSTALL_PROGRAM += -s29 endif30 22 31 23 build: build-stamp … … 35 27 36 28 # Add here commands to compile the package. 37 perl Makefile.PL CONFDIR=/etc/pb29 $(PERL) Makefile.PL CONFDIR=/etc/pb INSTALLDIRS=vendor PBKEYWORD=$(CURDIR)/PBFINALDIR MANDIR=/usr/share/man 38 30 $(MAKE) 39 31 touch $@ … … 58 50 $(MAKE) install DESTDIR=$(CURDIR)/debian/PBREALPKG 59 51 52 # Build architecture-dependent files here. Nothing here 53 binary-arch: build install 54 60 55 # Build architecture-independent files here. 61 56 binary-indep: build install 62 # We have nothing to do by default. 63 64 # Build architecture-dependent files here. 65 binary-arch: build install 66 dh_testdir 67 dh_testroot 68 dh_installchangelogs ChangeLog 69 dh_installdocs 70 dh_installexamples 71 # dh_install 72 # dh_installmenu 73 # dh_installdebconf 74 # dh_installlogrotate 75 # dh_installemacsen 76 # dh_installpam 77 # dh_installmime 78 # dh_python 79 # dh_installinit 80 # dh_installcron 81 # dh_installinfo 82 dh_installman 83 dh_strip 84 dh_compress 85 dh_fixperms 86 # dh_perl 87 # dh_makeshlibs 88 dh_installdeb 89 dh_shlibdeps 90 dh_gencontrol 91 dh_md5sums 92 dh_builddeb 57 dh_testdir 58 dh_testroot 59 dh_installchangelogs ChangeLog 60 dh_installdocs 61 #dh_installexamples 62 # dh_install 63 # dh_installmenu 64 # dh_installdebconf 65 # dh_installlogrotate 66 # dh_installemacsen 67 # dh_installpam 68 # dh_installmime 69 # dh_python 70 # dh_installinit 71 # dh_installcron 72 # dh_installinfo 73 dh_installman 74 dh_perl 75 dh_strip 76 dh_compress 77 dh_fixperms 78 # dh_makeshlibs 79 dh_installdeb 80 # dh_shlibdeps 81 dh_gencontrol 82 dh_md5sums 83 dh_builddeb 93 84 94 85 binary: binary-indep binary-arch
Note:
See TracChangeset
for help on using the changeset viewer.