wok annotate libxfce4util/receipt @ rev 14545

firefox-langpack-pt_PT: Up to 17.0.6esr
author Dominique Corbex <domcox@slitaz.org>
date Wed May 22 21:57:02 2013 +0200 (2013-05-22)
parents 387cedf281f4
children 6eff489aa802
rev   line source
erjo@2076 1 # SliTaz package receipt.
erjo@2076 2
erjo@2076 3 PACKAGE="libxfce4util"
erjo@8018 4 VERSION="4.8.1"
erjo@2076 5 CATEGORY="x-window"
erjo@2076 6 SHORT_DESC="Xfce Utility library"
erjo@2076 7 MAINTAINER="erjo@slitaz.org"
erjo@2076 8 DEPENDS="gtk+"
erjo@8018 9 BUILD_DEPENDS="gtk+-dev intltool"
erjo@2076 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@2076 11 WEB_SITE="http://www.xfce.org"
erjo@8018 12 WGET_URL="http://archive.xfce.org/xfce/${VERSION%.*}/src/$TARBALL"
erjo@2076 13
erjo@2076 14 # Rules to configure and make the package.
erjo@2076 15 compile_rules()
erjo@2076 16 {
erjo@2076 17 cd $src
erjo@2076 18 ./configure --prefix=/usr \
erjo@2076 19 --infodir=/usr/share/info \
erjo@8018 20 --disable-debug \
erjo@2076 21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@2076 22 make && make DESTDIR=$PWD/_pkg install
erjo@2076 23 }
erjo@2076 24
erjo@2076 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2076 26 genpkg_rules()
erjo@2076 27 {
erjo@2076 28 mkdir -p $fs/usr \
erjo@2076 29 $fs/usr/lib \
erjo@2076 30 $fs/usr/share/locale
erjo@2076 31
erjo@2076 32 cp -a $_pkg/usr/sbin $fs/usr
erjo@2076 33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@2076 34 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@2076 35 }
erjo@2076 36