wok view gettext-base/receipt @ rev 13814

Add fdupes
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 06 13:29:35 2013 +0100 (2013-01-06)
parents a246ea85cf2b
children c40da21aa3a1
line source
1 # SliTaz package receipt.
3 PACKAGE="gettext-base"
4 VERSION="0.18.1.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Base tools from the GNU Translation Project."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base"
9 WANTED="gettext"
10 WEB_SITE="http://www.gnu.org/software/gettext/"
11 HOST_ARCH="i486 arm"
13 # Just to be sure when cross compiling, gettext is part of base system.
14 testsuite()
15 {
16 readelf -h $install/usr/bin/gettext
17 }
19 # Rules to gen a SliTaz package suitable for Tazpkg.
20 genpkg_rules()
21 {
22 mkdir -p $fs/usr/bin
23 cp -a $install/usr/bin/gettext $fs/usr/bin
24 cp -a $install/usr/bin/gettext.sh $fs/usr/bin
25 # These are used in gettext.sh so there needed
26 cp -a $install/usr/bin/envsubst $fs/usr/bin
27 cp -a $install/usr/bin/ngettext $fs/usr/bin
28 }