wok view perl-text-glob/receipt @ rev 21909

updated sic (1.1 -> 1.2)
author Hans-G?nter Theisgen
date Fri Oct 04 15:39:32 2019 +0100 (2019-10-04)
parents 20661c276bcf
children 15650f5d595b
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-text-glob"
4 VERSION="0.11"
5 CATEGORY="development"
6 SHORT_DESC="Match globbing patterns against text."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL"
9 DEPENDS="perl"
10 BUILD_DEPENDS="perl"
11 SOURCE="Text-Glob"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="https://metacpan.org/release/Text-Glob"
14 WGET_URL="https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 perl Makefile.PL &&
20 make &&
21 make install DESTDIR="$DESTDIR"
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/lib $fs/usr
29 }