wok-current view libunique/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
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 }