wok diff libsecret/receipt @ rev 17914

Add fontforge and its depends (libspiro, libuninameslist).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 09 03:26:48 2015 +0300 (2015-04-09)
parents
children c13658501c85
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libsecret/receipt	Thu Apr 09 03:26:48 2015 +0300
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libsecret"
     1.7 +VERSION="0.18"
     1.8 +SHORT_DESC="GObject based library for accessing the Secret Service API."
     1.9 +MAINTAINER="devl547@gmail.org"
    1.10 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.11 +CATEGORY="security"
    1.12 +WEB_SITE="http://gnome.org"
    1.13 +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/$VERSION/$TARBALL"
    1.14 +HOST_ARCH="i486 arm"
    1.15 +
    1.16 +DEPENDS="libgcrypt"
    1.17 +BUILD_DEPENDS="libgcrypt-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	cd $src
    1.23 +	./configure --disable-static \
    1.24 +		--disable-manpages \
    1.25 +		--disable-gtk-doc \
    1.26 +		$CONFIGURE_ARGS &&
    1.27 +	make &&
    1.28 +	make DESTDIR=$DESTDIR install
    1.29 +}
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	mkdir -p $fs/usr/lib
    1.35 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.36 +}