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

Add sshrc (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 21 12:20:01 2019 +0100 (2019-12-21)
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 }