wok view perl-encode-locale/receipt @ rev 25850
Up bzip3 (1.5.2), dropbear (2025.88), tinyssh (20250501)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jun 06 06:34:03 2025 +0000 (13 days ago) |
parents | 15650f5d595b |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-encode-locale"
4 VERSION="1.05"
5 CATEGORY="development"
6 SHORT_DESC="Perl extension - Determine the locale encoding."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/dist/Encode-Locale"
11 SOURCE="Encode-Locale"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL"
15 DEPENDS="perl"
16 BUILD_DEPENDS="perl"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 perl Makefile.PL &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/* $fs
37 }