* Convert to source format 3.0 (quilt).
* Minimize debian/rules.
* Set Standards-Version to 3.8.4; drop version from perl build dependency.
Gregor Herrmann
12 years ago
4 | 4 |
|
5 | 5 |
[ gregor herrmann ]
|
6 | 6 |
* New upstream release 0.19.
|
|
7 |
* Convert to source format 3.0 (quilt).
|
|
8 |
* Minimize debian/rules.
|
|
9 |
* Set Standards-Version to 3.8.4; drop version from perl build dependency.
|
7 | 10 |
|
8 | 11 |
-- gregor herrmann <gregoa@debian.org> Sun, 18 Apr 2010 14:10:19 +0200
|
9 | 12 |
|
5 | 5 |
Jose Luis Rivas <ghostbar38@gmail.com>, Damyan Ivanov <dmn@debian.org>,
|
6 | 6 |
gregor herrmann <gregoa@debian.org>
|
7 | 7 |
Build-Depends: debhelper (>= 7)
|
8 | |
Build-Depends-Indep: perl (>= 5.8.8-7), libnet-ssleay-perl (>= 1.30)
|
9 | |
Standards-Version: 3.8.0
|
|
8 |
Build-Depends-Indep: perl, libnet-ssleay-perl (>= 1.30)
|
|
9 |
Standards-Version: 3.8.4
|
10 | 10 |
Homepage: http://search.cpan.org/dist/POE-Component-SSLify/
|
11 | 11 |
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpoe-component-sslify-perl/
|
12 | 12 |
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libpoe-component-sslify-perl/
|
0 | 0 |
#!/usr/bin/make -f
|
1 | 1 |
|
2 | |
build: build-stamp
|
3 | |
build-stamp:
|
4 | |
dh build
|
5 | |
touch $@
|
6 | |
|
7 | |
clean:
|
|
2 |
%:
|
8 | 3 |
dh $@
|
9 | |
|
10 | |
install: install-stamp
|
11 | |
install-stamp: build-stamp
|
12 | |
dh install
|
13 | |
touch $@
|
14 | |
|
15 | |
binary-arch:
|
16 | |
|
17 | |
binary-indep: install
|
18 | |
dh $@
|
19 | |
|
20 | |
binary: binary-arch binary-indep
|
21 | |
|
22 | |
.PHONY: binary binary-arch binary-indep install clean build
|