wok annotate poedit/receipt @ rev 16461

Add scrollz
author Paul Issott <paul@slitaz.org>
date Mon Apr 21 08:54:59 2014 +0100 (2014-04-21)
parents 1efdeedc622b
children e4fd343fd7b8
rev   line source
pankso@41 1 # SliTaz package receipt.
pankso@41 2
pankso@41 3 PACKAGE="poedit"
slaxemulator@7042 4 VERSION="1.4.6.1"
pankso@204 5 CATEGORY="development"
pankso@41 6 SHORT_DESC="Editor for i18n po files."
pankso@41 7 MAINTAINER="pankso@slitaz.org"
pascal@15375 8 LICENSE="MIT"
pascal@15375 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@15375 10 WEB_SITE="http://www.poedit.net/"
pascal@15375 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@15375 12
pascal@5005 13 DEPENDS="xorg wxWidgets pango gettext libdb xorg-libXdamage xorg-libXxf86vm \
pascal@5005 14 gtkspell"
erjo@1797 15 BUILD_DEPENDS="wxWidgets-dev gettext"
pankso@41 16
pankso@41 17 # Rules to configure and make the package.
pankso@41 18 compile_rules()
pankso@41 19 {
pankso@41 20 cd $src
pankso@41 21 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1465 22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1465 23 make &&
pascal@15375 24 make DESTDIR=$DESTDIR install
pankso@41 25 }
pankso@41 26
pankso@41 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@41 28 genpkg_rules()
pankso@41 29 {
pankso@41 30 mkdir -p $fs/usr/share/locale
pascal@15375 31 cp -a $install/usr/bin $fs/usr
pascal@15375 32 cp -a $install/usr/share/pixmaps $fs/usr/share
pascal@15375 33 cp -a $install/usr/share/poedit $fs/usr/share
pascal@15375 34 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
pankso@41 35 }
pankso@41 36