wok annotate poedit/receipt @ rev 17641

Up: bash 4.3.30
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 14 21:20:57 2015 +0000 (2015-02-14)
parents 51a1ebbda768
children 561e55bb4626
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"
al@16885 6 SHORT_DESC="Editor for i18n po files"
pankso@41 7 MAINTAINER="pankso@slitaz.org"
pascal@15375 8 LICENSE="MIT"
al@16885 9 WEB_SITE="http://www.poedit.net/"
pascal@15375 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@15375 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@15375 12
al@16885 13 DEPENDS="xorg wxWidgets pango gettext-base libdb xorg-libXdamage \
al@16885 14 xorg-libXxf86vm 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 {
al@16885 20 ./configure \
al@16885 21 --prefix=/usr \
al@16885 22 --infodir=/usr/share/info \
al@16885 23 --mandir=/usr/share/man \
al@16885 24 $CONFIGURE_ARGS &&
pascal@1465 25 make &&
pascal@15375 26 make DESTDIR=$DESTDIR install
pankso@41 27 }
pankso@41 28
pankso@41 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@41 30 genpkg_rules()
pankso@41 31 {
al@16885 32 mkdir -p $fs/usr/share
pascal@15375 33 cp -a $install/usr/bin $fs/usr
pascal@15375 34 cp -a $install/usr/share/pixmaps $fs/usr/share
pascal@15375 35 cp -a $install/usr/share/poedit $fs/usr/share
pankso@41 36 }
pankso@41 37