wok view attr/receipt @ rev 12532

Slim: more security when starting Xorg
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 25 11:39:21 2012 +0200 (2012-04-25)
parents da6b40f47996
children 3768ab6ce780
line source
1 # SliTaz package receipt.
3 PACKAGE="attr"
4 VERSION="2.4.46"
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=$DESTDIR
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 }