wok view poedit/receipt @ rev 1347

Add sox
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 05 10:50:16 2008 +0000 (2008-09-05)
parents 6805779fbeec
children c1ff74d9b6f4
line source
1 # SliTaz package receipt.
3 PACKAGE="poedit"
4 VERSION="1.3.7"
5 CATEGORY="development"
6 SHORT_DESC="Editor for i18n po files."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg wxWidgets pango gettext"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.poedit.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share/locale
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
29 cp -a $_pkg/usr/share/poedit $fs/usr/share
30 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
31 strip -s $fs/usr/bin/*
32 }