wok view poedit/receipt @ rev 1699

Add: get-eclipse-pdt, get and install eclipse PDT
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Nov 13 00:04:59 2008 +0100 (2008-11-13)
parents 17a39e4461e4
children 348305174f49
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 BUILD_DEPENDS="wxWidgets 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 strip -s $fs/usr/bin/*
33 }