wok view libgnome-keyring/receipt @ rev 12050

get-xnviewmp: remove extension from desktop file
author Samuel Trassare <samuel_trassare@yahoo.com>
date Wed Mar 07 17:28:56 2012 -0800 (2012-03-07)
parents 5e32c7dc0974
children 05a16d345d57
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 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 }