~ubuntu-branches/ubuntu/raring/libanyevent-perl/raring

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu
  • Date: 2010-01-05 13:42:15 UTC
  • mfrom: (1.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100105134215-1i5gdpn2etpax6e7
Tags: 5.240-1
* New upstream release
* Remove perl-path patch, replace with override
* Add a patch to correct POD spelling errors
* Update copyright to new DEP5 format
* Update copyright years

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
2
 
 
3
PACKAGE = $(shell dh_listpackages)
 
4
TMP     = $(CURDIR)/debian/$(PACKAGE)
 
5
 
3
6
%:
4
7
        dh --with quilt $@
 
8
 
 
9
override_dh_installexamples:
 
10
        dh_installexamples
 
11
        sed -i '1s|^#!/opt/perl/bin/perl|#!/usr/bin/perl|' $(TMP)/usr/share/doc/$(PACKAGE)/examples/*
 
12
        sed -i '1s|^#!/opt/bin/perl|#!/usr/bin/perl|' $(TMP)/usr/share/doc/$(PACKAGE)/examples/*
 
13