wok-current view sharutils/receipt @ rev 18533
tazpkg: touch blocked-packages.list (thanks mojo)
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Wed Oct 28 23:31:09 2015 +0000 (2015-10-28) | 
| parents | |
| children | d572a56a92d1 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="sharutils"
     4 VERSION="4.14"
     5 CATEGORY="utilities"
     6 SHORT_DESC="makes 'shar' shell archives out of many files."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL3"
     9 TARBALL="$PACKAGE-$VERSION.tar.xz"
    10 WEB_SITE="https://www.gnu.org/software/sharutils/"
    11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    13 # Rules to configure and make the package.
    14 compile_rules()
    15 {
    16 	./configure --prefix=/usr \
    17 		--infodir=/usr/share/info \
    18 		--mandir=/usr/share/man \
    19 		$CONFIGURE_ARGS &&
    20 	make &&
    21 	make DESTDIR=$DESTDIR install
    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/bin $fs/usr
    29 }