wok view perl-http-parser/receipt @ rev 20788

updated cifs-utils and cifs-utils-dev (6.7 -> 6.8)
author Hans-G?nter Theisgen
date Thu Feb 14 16:07:19 2019 +0100 (2019-02-14)
parents 2d12ebd38be4
children 18c66805dd1a
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-http-parser"
4 VERSION="0.06"
5 CATEGORY="development"
6 SHORT_DESC="parse HTTP/1.1 request into HTTP::Request/Response object"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/~edeca/HTTP-Parser-0.06/"
10 SOURCE="HTTP-Parser"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="https://metacpan.org/CPAN/authors/id/E/ED/EDECA/$TARBALL"
14 DEPENDS="perl-http-message perl-uri"
15 BUILD_DEPENDS="perl $DEPENDS"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 perl Makefile.PL &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/lib $fs/usr
31 }