wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libgnome-keyring/receipt	Sat Nov 26 03:56:37 2011 +0000
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libgnome-keyring"
     1.7 +VERSION="2.32.0"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="A libray that keep password and other secrets for users."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://www.gnome.org"
    1.13 +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.14 +
    1.15 +DEPENDS="libgcrypt dbus"
    1.16 +BUILD_DEPENDS="libgcrypt-dev dbus-dev"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	./configure \
    1.23 +		--libexecdir=/usr/lib/$PACKAGE \
    1.24 +		--sysconfdir=/etc/gnome \
    1.25 +		--disable-pam &&
    1.26 +	make && make install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr/lib
    1.33 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.34 +}