wok view libgnome-keyring/receipt @ rev 16266

Up: tazweb (1.8) With full bookmarks support and easy access
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 05 18:57:30 2014 +0200 (2014-04-05)
parents 4904e3d374a9
children ebd13d88e221
line source
1 # SliTaz package receipt.
3 PACKAGE="libgnome-keyring"
4 VERSION="2.32.0"
5 CATEGORY="x-window"
6 SHORT_DESC="A libray that keep password and other secrets for users."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnome.org"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="libgcrypt dbus glib"
14 BUILD_DEPENDS="libgcrypt-dev dbus-dev glib-dev intltool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --libexecdir=/usr/lib/$PACKAGE \
22 --sysconfdir=/etc/gnome \
23 --disable-pam \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }