wok annotate libxfce4mcs/receipt @ rev 2636

Up: slitaz-base-files (change release string) + slitaz-doc for 2.0
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 16 19:59:30 2009 +0200 (2009-04-16)
parents
children
rev   line source
erjo@2076 1 # SliTaz package receipt.
erjo@2076 2
erjo@2076 3 PACKAGE="libxfce4mcs"
erjo@2076 4 VERSION="4.4.3"
erjo@2076 5 CATEGORY="x-window"
erjo@2076 6 SHORT_DESC="Xfce settings managment library"
erjo@2076 7 MAINTAINER="erjo@slitaz.org"
erjo@2076 8 DEPENDS="xorg-libSM libxfce4util startup-notification"
erjo@2076 9 BUILD_DEPENDS="xorg-libSM-dev libxfce4util-dev startup-notification-dev"
erjo@2076 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@2076 11 WEB_SITE="http://www.xfce.org/"
erjo@2076 12 WGET_URL="http://www.p0llux.be/xfce/xfce-4.4.3/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 --enable-startup-notification \
erjo@2076 20 --infodir=/usr/share/info \
erjo@2076 21 --enable-debug=no $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/lib
erjo@2076 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@2076 30 }
erjo@2076 31