wok view libunique/receipt @ rev 5713

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