wok-stable annotate grep/receipt @ rev 11385
Up: libsigc++ 2.2.10 (fix build issues)
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Sat Dec 10 04:36:45 2011 +0100 (2011-12-10) |
parents | e81f99d5c01b |
children | d46c7202fe2f |
rev | line source |
---|---|
paul@7100 | 1 # SliTaz package receipt. |
paul@7100 | 2 |
paul@7100 | 3 PACKAGE="grep" |
slaxemulator@11024 | 4 VERSION="2.9" |
paul@7100 | 5 CATEGORY="development" |
paul@7100 | 6 SHORT_DESC="GNU Global Regular Expression Print." |
paul@7100 | 7 MAINTAINER="paul@slitaz.org" |
paul@7100 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@7100 | 9 WEB_SITE="http://www.gnu.org/software/grep/" |
paul@7100 | 10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
paul@7100 | 11 |
paul@7100 | 12 # Rules to configure and make the package. |
paul@7100 | 13 compile_rules() |
paul@7100 | 14 { |
paul@7100 | 15 cd $src |
slaxemulator@10089 | 16 ./configure $CONFIGURE_ARGS && |
slaxemulator@10089 | 17 make && make install |
paul@7100 | 18 } |
paul@7100 | 19 |
paul@7100 | 20 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@7100 | 21 genpkg_rules() |
paul@7100 | 22 { |
paul@7100 | 23 mkdir -p $fs/usr |
paul@7100 | 24 cp -a $_pkg/usr/bin $fs/usr |
paul@7100 | 25 } |
paul@7100 | 26 |
slaxemulator@7187 | 27 # Pre and post install commands for Tazpkg. |
slaxemulator@7187 | 28 # We must remove all Busybox symlink before installing. |
slaxemulator@7187 | 29 # |
slaxemulator@7187 | 30 pre_install() |
slaxemulator@7187 | 31 { |
slaxemulator@7187 | 32 local root |
slaxemulator@7187 | 33 root=$1 |
slaxemulator@7187 | 34 echo "Processing pre-install commands..." |
slaxemulator@7187 | 35 echo -n "Removing all Busybox replaced utils... " |
slaxemulator@7187 | 36 rm -f $root/usr/bin/grep |
slaxemulator@7187 | 37 status |
slaxemulator@7187 | 38 } |
slaxemulator@7187 | 39 |
slaxemulator@7187 | 40 post_remove() |
slaxemulator@7187 | 41 { |
slaxemulator@9828 | 42 ln -s /bin/busybox $1/usr/bin/grep |
slaxemulator@7187 | 43 } |