wok view attr/receipt @ rev 4413

fix depends elinks
author Allan Pinto <allan316@gmail.com>
date Wed Oct 21 12:24:33 2009 +0000 (2009-10-21)
parents 22fccd4d5400
children 1de15bd4be74
line source
1 # SliTaz package receipt.
3 PACKAGE="attr"
4 VERSION="2.4.43-1"
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}.tar.gz"
11 WEB_SITE="http://savannah.nongnu.org/projects/attr/"
12 WGET_URL="ftp://oss.sgi.com/projects/xfs/cmd_tars/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 mv $PACKAGE-2.4.43 $PACKAGE-$VERSION
19 cd $src
21 # Patch commands are from http://minimalinux.org/forum/viewtopic.php?pid=1446#p1446
23 # these sed lines replace the patch "attr.destdir.diff" from the Slackware source files
24 sed -i s%"@bindir@"%"\$\(DESTDIR\)@bindir@"% include/builddefs.in
25 sed -i s%"@sbindir@"%"\$\(DESTDIR\)@sbindir@"% include/builddefs.in
26 sed -i s%"@libdir@@libdirsuffix@"%"\$\(DESTDIR\)@libdir@@libdirsuffix@"% include/builddefs.in
27 sed -i s%"@libexecdir@@libdirsuffix@"%"\$\(DESTDIR\)@libexecdir@@libdirsuffix@"% include/builddefs.in
28 sed -i s%"@includedir@/attr"%"\$\(DESTDIR\)@includedir@/attr"% include/builddefs.in
29 sed -i s%"@mandir@"%"\$\(DESTDIR\)@mandir@"% include/builddefs.in
31 # force docdir conformance to Slack default
32 sed -i s%"@datadir@/doc/@pkg_name@"%"\$\(DESTDIR\)/usr/doc/@pkg_name@-\$\(VERSION\)"% include/builddefs.in
33 sed -i s%"@datadir@/locale"%"\$\(DESTDIR\)@datadir@/locale"% include/builddefs.in
35 # Don't need to build man and doc
36 rm -r -f man
37 rm -r -f doc
39 # Configure is included in Makefile
40 make LOCAL_CONFIGURE_OPTIONS="$CONFIGURE_ARGS" &&
41 make DESTDIR=$src/_pkg install install-lib install-dev
42 }
44 # Rules to gen a SliTaz package suitable for Tazpkg.
45 genpkg_rules()
46 {
47 mkdir -p $fs/lib
48 cp -a $_pkg/lib/*.so* $fs/lib
50 # Symlinks are not created correctly; create manually
51 mkdir -p $fs/usr/lib
52 ln -s /lib/libattr.so $fs/usr/lib/libattr.so
54 cp -a $_pkg/usr/bin $fs/usr
55 }