wok view gettext/receipt @ rev 5050

update depends libddevmapper (thanks ernia)
author Rohit Joshi <jozee@slitaz.org>
date Fri Mar 05 20:14:14 2010 +0000 (2010-03-05)
parents 5922a819b2eb
children 3b94cfd89314
line source
1 # SliTaz package receipt.
3 PACKAGE="gettext"
4 VERSION="0.17"
5 CATEGORY="development"
6 SHORT_DESC="Utilities for the GNU Translation Project."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 BUILD_DEPENDS="slitaz-toolchain glibc-locale"
10 DEPENDS="gettext-base libgomp ncurses glib libcroco gcc-lib-base"
11 WEB_SITE="http://www.gnu.org/software/gettext/"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib $fs/usr
30 cp -a $_pkg/usr/include $fs/usr
31 cp -a $_pkg/usr/share/aclocal $fs/usr/share
32 cp -a $_pkg/usr/share/gettext $fs/usr/share
33 # Remove gettext-base files.
34 rm $fs/usr/bin/gettext
35 rm $fs/usr/bin/gettext.sh
36 }