wok view libgnome-keyring/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents b7319995b37e
children 4904e3d374a9
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnome.org"
10 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="libgcrypt dbus glib"
13 BUILD_DEPENDS="libgcrypt-dev dbus-dev glib-dev intltool"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --libexecdir=/usr/lib/$PACKAGE \
21 --sysconfdir=/etc/gnome \
22 --disable-pam \
23 $CONFIGURE_ARGS &&
24 make && make 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 $install/usr/lib/*.so* $fs/usr/lib
32 }