wok view perl-date-calc/receipt @ rev 20671

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 11:33:03 2019 +0100 (2019-01-24)
parents 2d12ebd38be4
children 20661c276bcf
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-date-calc"
4 VERSION="6.3"
5 CATEGORY="development"
6 SHORT_DESC="Perl module for Gregorian calendar date calculations"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL"
9 DEPENDS="perl perl-bit-vector"
10 BUILD_DEPENDS="$DEPENDS"
11 SOURCE="Date-Calc"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="https://metacpan.org/release/Date-Calc/"
14 WEB_SITE="https://metacpan.org/release/$ORIGIN"
15 WGET_URL="http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 perl Makefile.PL &&
22 make &&
23 make install DESTDIR=$DESTDIR
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 }