wok view libtar/receipt @ rev 18975

linux64-firmware alias
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 13 15:18:55 2016 +0100 (2016-03-13)
parents 78b4eabb585c
children eeba7ab1dffe
line source
1 # SliTaz package receipt.
3 PACKAGE="libtar"
4 VERSION="1.2.11"
5 CATEGORY="development"
6 SHORT_DESC="C library for manipulating POSIX tar files."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.feep.net/libtar/"
11 WGET_URL="ftp://ftp.feep.net/pub/software/$PACKAGE/$TARBALL"
13 DEPENDS="zlib"
14 BUILD_DEPENDS="zlib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }