wok view libgringotts/receipt @ rev 20446

python-singledispatch: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 20 15:14:50 2018 +0200 (2018-09-20)
parents 4484b8b94160
children 65d7d867e0c1
line source
1 # SliTaz package receipt.
3 PACKAGE="libgringotts"
4 VERSION="1.2.1"
5 CATEGORY="security"
6 SHORT_DESC="A Safebox for your Data."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://gringotts.shlomifish.org/"
11 WGET_URL="$SF_MIRROR/gringotts.berlios/$TARBALL"
13 DEPENDS="bzip2 zlib libmcrypt mhash"
14 BUILD_DEPENDS="bzip2-dev zlib-dev libmcrypt-dev mhash-dev file"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }