wok view poedit/receipt @ rev 2338

gpxe: add url redondancy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 01 22:17:59 2009 +0000 (2009-03-01)
parents c1ff74d9b6f4
children d1aba649375c
line source
1 # SliTaz package receipt.
3 PACKAGE="poedit"
4 VERSION="1.4.2"
5 CATEGORY="development"
6 SHORT_DESC="Editor for i18n po files."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg wxWidgets pango gettext"
9 BUILD_DEPENDS="wxWidgets-dev gettext"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.poedit.net/"
12 WGET_URL="$SF_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/locale
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
30 cp -a $_pkg/usr/share/poedit $fs/usr/share
31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
32 }