Legend:
- Unmodified
- Added
- Removed
-
debian/changelog
r11174 r20535 1 pugs (6.2.12-2) unstable; urgency=low 2 3 * removed parrot embedding because it is broken in upstream 4 * added libghc6-network-dev as build dependency 5 6 -- Moritz Lenz <mlenz@physik.uni-wuerzburg.de> Thu, 17 May 2007 23:35:15 +0100 7 1 8 pugs (6.2.12-1) unstable; urgency=low 2 9 -
debian/pugs.install
r11174 r20535 1 1 usr/share/vim/* 2 usr/share/man/man3/Pugs::Doc::Run.3pm3 usr/share/man/man3/Pugs::Doc::Hack.3pm4 usr/share/man/man3/Perl6::Pugs.3pm5 2 usr/lib/perl6/* 6 3 usr/bin/* -
debian/rules
r11174 r20535 1 1 #!/usr/bin/make -f 2 2 3 include /usr/share/dpatch/dpatch.make3 #include /usr/share/dpatch/dpatch.make 4 4 5 5 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) … … 12 12 13 13 configure: configure-stamp 14 configure-stamp: patch-stamp14 configure-stamp: 15 15 dh_testdir 16 PUGS_EMBED=perl5 ,parrotperl Makefile.PL INSTALLDIRS=vendor PREFIX=/usr16 PUGS_EMBED=perl5 perl Makefile.PL INSTALLDIRS=vendor PREFIX=/usr 17 17 touch configure-stamp 18 18 … … 22 22 build-arch-stamp: configure-stamp 23 23 $(MAKE) $(CFLAGS) 24 -test $$SKIP_TESTS || $(MAKE) upload-smoke24 # -test $$SKIP_TESTS || $(MAKE) upload-smoke 25 25 pod2man --section=1 --release="Debian Project" --center="Debian GNU/Linux manual" $(CURDIR)/script/pugscc $(CURDIR)/debian/pugscc.1 26 26 touch build-arch-stamp … … 30 30 touch build-indep-stamp 31 31 32 clean: clean1 unpatch32 clean: clean1 33 33 clean1: 34 34 dh_testdir … … 58 58 dh_testdir 59 59 dh_testroot 60 rmdir --ignore-fail-on-non-empty $(CURDIR)/debian/pugs/usr/lib/perl6/5.8/ 60 # rmdir --ignore-fail-on-non-empty 61 rm -rf $(CURDIR)/debian/pugs/usr/lib/perl6/5.8/ 61 62 62 63 # Build architecture independant packages using the common target. … … 96 97 97 98 binary: binary-arch binary-indep 98 .PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure patch unpatchclean199 .PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure clean1
