wok view attr/receipt @ rev 8011

Changed user privoxy to user id 42 in privoxy receipt.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jan 19 00:02:05 2011 +0000 (2011-01-19)
parents 6010b60e81b4
children cd2506f67c2e
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 # Patch commands are from http://minimalinux.org/forum/viewtopic.php?pid=1446#p1446
21 # these sed lines replace the patch "attr.destdir.diff" from the Slackware source files
22 sed -i s%"@bindir@"%"\$\(DESTDIR\)@bindir@"% include/builddefs.in
23 sed -i s%"@sbindir@"%"\$\(DESTDIR\)@sbindir@"% include/builddefs.in
24 sed -i s%"@libdir@@libdirsuffix@"%"\$\(DESTDIR\)@libdir@@libdirsuffix@"% include/builddefs.in
25 sed -i s%"@libexecdir@@libdirsuffix@"%"\$\(DESTDIR\)@libexecdir@@libdirsuffix@"% include/builddefs.in
26 sed -i s%"@includedir@/attr"%"\$\(DESTDIR\)@includedir@/attr"% include/builddefs.in
27 sed -i s%"@mandir@"%"\$\(DESTDIR\)@mandir@"% include/builddefs.in
29 # force docdir conformance to Slack default
30 sed -i s%"@datadir@/doc/@pkg_name@"%"\$\(DESTDIR\)/usr/doc/@pkg_name@-\$\(VERSION\)"% include/builddefs.in
31 sed -i s%"@datadir@/locale"%"\$\(DESTDIR\)@datadir@/locale"% include/builddefs.in
33 # Don't need to build man and doc
34 # rm -r -f man
35 # rm -r -f doc
37 # Need bash sh to compile
38 mv /bin/sh /bin/sh.bak
39 ln -s /bin/bash /bin/sh
41 # Configure is included in Makefile
42 { make LOCAL_CONFIGURE_OPTIONS="$CONFIGURE_ARGS" &&
43 make install install-lib install-dev DESTDIR=$PWD/_pkg
44 } || { mv -f /bin/sh.bak /bin/sh; return 1; }
46 mv -f /bin/sh.bak /bin/sh
47 }
49 # Rules to gen a SliTaz package suitable for Tazpkg.
50 genpkg_rules()
51 {
52 mkdir -p $fs/lib
53 cp -a $_pkg/lib/*.so* $fs/lib
55 # Symlinks are not created correctly; create manually
56 mkdir -p $fs/usr/lib
57 ln -s /lib/libattr.so $fs/usr/lib/libattr.so
59 cp -a $_pkg/usr/bin $fs/usr
60 }