wok rev 17247

Add gringotts
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 19 11:40:30 2014 +0200 (2014-10-19)
parents f785aa5219e8
children 26db6f06afaf
files gringotts/receipt libgringotts-dev/receipt libgringotts/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gringotts/receipt	Sun Oct 19 11:40:30 2014 +0200
     1.3 @@ -0,0 +1,36 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="gringotts"
     1.7 +VERSION="1.2.10"
     1.8 +CATEGORY="security"
     1.9 +SHORT_DESC="An electronic strongbox."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="GPL2"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://gringotts.shlomifish.org/"
    1.14 +WGET_URL="$SF_MIRROR/$PACKAGE.berlios/$TARBALL"
    1.15 +
    1.16 +DEPENDS="gtk+ libgringotts popt"
    1.17 +BUILD_DEPENDS="pkg-config gtk+-dev libgringotts-dev popt-dev libmcrypt-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./configure \
    1.23 +		--prefix=/usr \
    1.24 +		$CONFIGURE_ARGS &&
    1.25 +	make &&
    1.26 +	make -j 1 DESTDIR=$DESTDIR 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/share/applications
    1.33 +	cp -a $install/usr/bin $fs/usr
    1.34 +	cp -a $install/usr/share/pixmaps $fs/usr/share
    1.35 +	cp -a install/usr/share/gnome/apps/Utilities/gringotts.desktop \
    1.36 +		$fs/usr/share/applications
    1.37 +	sed -i '/X-GNOME-DocPath/d' $fs/usr/share/applications/gringotts.desktop
    1.38 +	echo "Categories=Office;" >> $fs/usr/share/applications/gringotts.desktop
    1.39 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libgringotts-dev/receipt	Sun Oct 19 11:40:30 2014 +0200
     2.3 @@ -0,0 +1,21 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="libgringotts-dev"
     2.7 +VERSION="1.2.1"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="A Safebox for your Data, development files."
    2.10 +MAINTAINER="pascal.bellard@slitaz.org"
    2.11 +LICENSE="GPL2"
    2.12 +WEB_SITE="http://gringotts.shlomifish.org/"
    2.13 +WANTED="libgringotts"
    2.14 +
    2.15 +DEPENDS="libgringotts"
    2.16 +
    2.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.18 +genpkg_rules()
    2.19 +{
    2.20 +	mkdir -p $fs/usr/lib
    2.21 +	cp -a $install/usr/include $fs/usr
    2.22 +	cp -a $install/usr/lib/*a $fs/usr/lib
    2.23 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    2.24 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/libgringotts/receipt	Sun Oct 19 11:40:30 2014 +0200
     3.3 @@ -0,0 +1,31 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="libgringotts"
     3.7 +VERSION="1.2.1"
     3.8 +CATEGORY="security"
     3.9 +SHORT_DESC="A Safebox for your Data."
    3.10 +MAINTAINER="pascal.bellard@slitaz.org"
    3.11 +LICENSE="GPL2"
    3.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.13 +WEB_SITE="http://gringotts.shlomifish.org/"
    3.14 +WGET_URL="$SF_MIRROR/gringotts.berlios/$TARBALL"
    3.15 +
    3.16 +DEPENDS="bzip2 zlib libmcrypt mhash"
    3.17 +BUILD_DEPENDS="bzip2-dev zlib-dev libmcrypt-dev mhash-dev"
    3.18 +
    3.19 +# Rules to configure and make the package.
    3.20 +compile_rules()
    3.21 +{
    3.22 +	./configure \
    3.23 +		--prefix=/usr \
    3.24 +		$CONFIGURE_ARGS &&
    3.25 +	make &&
    3.26 +	make DESTDIR=$DESTDIR install
    3.27 +}
    3.28 +
    3.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.30 +genpkg_rules()
    3.31 +{
    3.32 +	mkdir -p $fs/usr/lib
    3.33 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.34 +}