wok annotate sharutils/receipt @ rev 21908
updated sharutils (4.14 -> 4.15.2)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Oct 04 14:54:35 2019 +0100 (2019-10-04) |
parents | 36158d17fa8a |
children | 71360a13cd94 |
rev | line source |
---|---|
pascal@17528 | 1 # SliTaz package receipt. |
pascal@17528 | 2 |
pascal@17528 | 3 PACKAGE="sharutils" |
Hans-G?nter@21908 | 4 VERSION="4.15.2" |
pascal@17528 | 5 CATEGORY="utilities" |
Hans-G?nter@21908 | 6 SHORT_DESC="The GNU shar utilities for packaging and unpackaging shell archives." |
pascal@17528 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@17528 | 8 LICENSE="GPL3" |
Hans-G?nter@21908 | 9 WEB_SITE="https://www.gnu.org/software/sharutils/" |
Hans-G?nter@21908 | 10 |
pascal@17528 | 11 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pascal@17528 | 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
pascal@17528 | 13 |
pascal@17528 | 14 # Rules to configure and make the package. |
pascal@17528 | 15 compile_rules() |
pascal@17528 | 16 { |
Hans-G?nter@21908 | 17 ./configure \ |
Hans-G?nter@21908 | 18 --prefix=/usr \ |
Hans-G?nter@21908 | 19 --infodir=/usr/share/info \ |
Hans-G?nter@21908 | 20 --mandir=/usr/share/man \ |
pascal@17528 | 21 $CONFIGURE_ARGS && |
pascal@17528 | 22 make && |
pascal@17528 | 23 make DESTDIR=$DESTDIR install |
pascal@17528 | 24 } |
pascal@17528 | 25 |
pascal@17528 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@17528 | 27 genpkg_rules() |
pascal@17528 | 28 { |
pascal@17528 | 29 mkdir -p $fs/usr |
pascal@17528 | 30 cp -a $install/usr/bin $fs/usr |
pascal@17528 | 31 } |