wok view attr/receipt @ rev 8121

Fixed pcsxr-svn to use lzma-alone instead of lzma wrapper script. Turns out the lzma wrapper script for xz is incompatible with lzma-alone compression. Also lzma-alone compress better.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jan 24 00:57:47 2011 +0000 (2011-01-24)
parents f05cb4af3af0
children da6b40f47996
line source
1 # SliTaz package receipt.
3 PACKAGE="attr"
4 VERSION="2.4.44"
5 CATEGORY="system-tools"
6 SHORT_DESC="Commands for Manipulating Filesystem Extended Attributes."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS="glibc-base"
9 BUILD_DEPENDS="slitaz-toolchain autoconf automake m4 libtool gettext"
10 TARBALL="${PACKAGE}-${VERSION}.src.tar.gz"
11 WEB_SITE="http://savannah.nongnu.org/projects/attr/"
12 WGET_URL="http://download.savannah.gnu.org/releases-noredirect/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 # Need bash sh to compile
20 mv /bin/sh /bin/sh.bak
21 ln -s /bin/bash /bin/sh
23 # Configure is included in Makefile
24 { make LOCAL_CONFIGURE_OPTIONS="$CONFIGURE_ARGS" &&
25 make install install-lib install-dev DIST_ROOT=$PWD/_pkg
26 } || { mv -f /bin/sh.bak /bin/sh; return 1; }
28 mv -f /bin/sh.bak /bin/sh
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/lib $fs/usr/lib
35 cp -a $_pkg/lib/*.so* $fs/lib
36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
37 cp -a $_pkg/usr/bin $fs/usr
38 }