wok annotate libarchive/receipt @ rev 15294

TeXmacs: remove util.h
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 09:29:34 2013 +0000 (2013-09-27)
parents f831ecb652a6
children 6c3718ca17b6
rev   line source
erjo@3653 1 # SliTaz package receipt.
erjo@3653 2
erjo@3653 3 PACKAGE="libarchive"
slaxemulator@6211 4 VERSION="2.8.4"
pankso@4805 5 CATEGORY="system-tools"
erjo@3653 6 SHORT_DESC="C librairy and command line tool for reading archive."
erjo@3653 7 MAINTAINER="erjo@slitaz.org"
slaxemulator@6571 8 DEPENDS="acl libcrypto liblzma bzlib zlib libxml2"
slaxemulator@6571 9 BUILD_DEPENDS="acl-dev attr-dev libcrypto-dev zlib-dev libxml2-dev"
erjo@3653 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@3653 11 WEB_SITE="http://code.google.com/p/libarchive/"
erjo@3653 12 WGET_URL="http://libarchive.googlecode.com/files/$TARBALL"
erjo@3653 13
erjo@3653 14 # Rules to configure and make the package.
erjo@3653 15 compile_rules()
erjo@3653 16 {
erjo@3653 17 cd $src
erjo@3653 18 ./configure \
erjo@3653 19 --prefix=/usr \
erjo@3653 20 --infodir=/usr/share/info \
erjo@3653 21 --mandir=/usr/share/man \
erjo@3653 22 $CONFIGURE_ARGS &&
gokhlayeh@12075 23 make && make -j1 DESTDIR=$PWD/_pkg install
erjo@3653 24 }
erjo@3653 25
erjo@3653 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@3653 27 genpkg_rules()
erjo@3653 28 {
erjo@3653 29 mkdir -p $fs/usr/lib
erjo@3653 30 cp -a $_pkg/usr/bin $fs/usr
erjo@3653 31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@3653 32 }
erjo@3653 33