wok rev 17583

Add: libsecret 0.18
author Alexander Medvedev <devl547@gmail.com>
date Sun Feb 08 19:36:25 2015 +0000 (2015-02-08)
parents e1141f224d98
children c5db15c56bd6
files libsecret-dev/receipt libsecret/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libsecret-dev/receipt	Sun Feb 08 19:36:25 2015 +0000
     1.3 @@ -0,0 +1,19 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libsecret-dev"
     1.7 +VERSION="0.18"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="libsecret Secret Service API devel files."
    1.10 +MAINTAINER="devl547@gmail.com"
    1.11 +WANTED="libsecret"
    1.12 +WEB_SITE="http://gnome.org"
    1.13 +HOST_ARCH="i486 arm"
    1.14 +
    1.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.16 +genpkg_rules()
    1.17 +{
    1.18 +	mkdir -p $fs/usr/lib
    1.19 +	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.20 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.21 +	cp -a $install/usr/include $fs/usr
    1.22 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libsecret/receipt	Sun Feb 08 19:36:25 2015 +0000
     2.3 @@ -0,0 +1,33 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="libsecret"
     2.7 +VERSION="0.18"
     2.8 +SHORT_DESC="GObject based library for accessing the Secret Service API."
     2.9 +MAINTAINER="devl547@gmail.org"
    2.10 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    2.11 +CATEGORY="security"
    2.12 +WEB_SITE="http://gnome.org"
    2.13 +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/$VERSION/$TARBALL"
    2.14 +HOST_ARCH="i486 arm"
    2.15 +
    2.16 +DEPENDS="libgcrypt"
    2.17 +BUILD_DEPENDS="libgcrypt-dev"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	cd $src
    2.23 +	./configure --disable-static \
    2.24 +		--disable-manpages \
    2.25 +		--disable-gtk-doc \
    2.26 +		$CONFIGURE_ARGS &&
    2.27 +	make &&
    2.28 +	make DESTDIR=$DESTDIR install
    2.29 +}
    2.30 +
    2.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.32 +genpkg_rules()
    2.33 +{
    2.34 +	mkdir -p $fs/usr/lib
    2.35 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.36 +}