wok view libunique/receipt @ rev 6439

add patch: no pwd for halt/reboot/hibernate option
author xfred@localhost
date Mon Sep 27 21:59:43 2010 +0000 (2010-09-27)
parents f3f04d197875
children b2f3d02bf16d
line source
1 # SliTaz package receipt.
4 PACKAGE="libunique"
5 VERSION="1.1.6"
6 CATEGORY="development"
7 SHORT_DESC="Library for writing single instance application."
8 MAINTAINER="erjo@slitaz.org"
9 DEPENDS="gtk+ cairo dbus-glib"
10 BUILD_DEPENDS="pkg-config gtk+-dev glib-dev perl expat-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://live.gnome.org/LibUnique"
13 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/libunique/${VERSION%.*}/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }