wok view libgnome-keyring/receipt @ rev 11339

libpng: Make sure $PATCH is in $SOURCES_REPOSITORY.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Nov 26 03:56:37 2011 +0000 (2011-11-26)
parents
children 5e32c7dc0974
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"
13 BUILD_DEPENDS="libgcrypt-dev dbus-dev"
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 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }