wok-undigest view gnome-keyring/receipt @ rev 4

Add gnome-keyring*
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Mar 19 19:03:26 2010 +0100 (2010-03-19)
parents
children c19d9105bf40
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-keyring"
4 VERSION="2.28.1"
5 CATEGORY="x-window"
6 SHORT_DESC=""
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libgcrypt libtasn1 python"
9 BUILD_DEPENDS="libgcrypt-dev libtasn1-dev python-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnome.org"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --libexecdir=/usr/lib/$PACKAGE \
22 --sysconfdir=/etc/gnome \
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 $fs/usr/share
32 cp -a $_pkg/etc $fs/
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/gnome-keyring $fs/usr/lib
37 # remove archive lib
38 find $fs/usr/lib -name *.*a -exec rm -f {} \;
40 test -d $WOK/$PACKAGE-dev && tazwok cook $PACKAGE-dev
42 }