wok annotate libunique/receipt @ rev 5943

gcc: fix build_depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 02 19:14:29 2010 +0200 (2010-08-02)
parents 8752c40cc534
children f3f04d197875
rev   line source
erjo@4760 1 # SliTaz package receipt.
erjo@4760 2
erjo@4760 3 PACKAGE="libunique"
erjo@4760 4 VERSION="1.0.8"
erjo@4760 5 CATEGORY="development"
erjo@4760 6 SHORT_DESC="Library for writing single instance application."
erjo@4760 7 MAINTAINER="erjo@slitaz.org"
pankso@5337 8 DEPENDS="gtk+ cairo dbus-glib"
erjo@4760 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@4760 10 WEB_SITE="http://live.gnome.org/LibUnique"
erjo@4760 11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/libunique/${VERSION%.*}/$TARBALL"
erjo@4760 12
erjo@4760 13 # Rules to configure and make the package.
erjo@4760 14 compile_rules()
erjo@4760 15 {
erjo@4760 16 cd $src
erjo@4760 17 ./configure \
erjo@4760 18 --prefix=/usr \
erjo@4760 19 --infodir=/usr/share/info \
erjo@4760 20 --mandir=/usr/share/man \
erjo@4760 21 $CONFIGURE_ARGS &&
erjo@4760 22 make && make DESTDIR=$PWD/_pkg install
erjo@4760 23 }
erjo@4760 24
erjo@4760 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4760 26 genpkg_rules()
erjo@4760 27 {
erjo@4760 28 mkdir -p $fs/usr/lib
erjo@4760 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@4760 30 }
erjo@4760 31