wok-6.x annotate libarchive/receipt @ rev 9020
Fixed ndiswrapper-driver. For some reason 0644 mode is invaild. But 644 works just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Mar 03 15:06:15 2011 +0000 (2011-03-03) |
parents | 4181a6d751c4 |
children | 5188b6752a42 |
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 && |
erjo@3653 | 23 make && make 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 |