wok-next diff beecrypt/receipt @ rev 19988

Add qt5 - now it's look good enough
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 20 03:29:40 2017 +0300 (2017-10-20)
parents 8d6f480bf664
children 835b3b8ce6ac
line diff
     1.1 --- a/beecrypt/receipt	Sun Nov 10 17:13:06 2013 +0000
     1.2 +++ b/beecrypt/receipt	Fri Oct 20 03:29:40 2017 +0300
     1.3 @@ -1,34 +1,35 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="beecrypt"
     1.8  VERSION="4.2.1"
     1.9 -CATEGORY="system-tools"
    1.10 -SHORT_DESC="Cryptography Library"
    1.11 +CATEGORY="security"
    1.12 +SHORT_DESC="BeeCrypt Cryptography Library"
    1.13  MAINTAINER="erjo@slitaz.org"
    1.14  LICENSE="GPL2 LGPL2.1"
    1.15 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16  WEB_SITE="http://beecrypt.sourceforge.net/"
    1.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.18  TAGS="cryptography toolkit"
    1.19  
    1.20 -DEPENDS="gcc-lib-base"
    1.21 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.22 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.23 +TARBALL_SHA256="286f1f56080d1a6b1d024003a5fa2158f4ff82cae0c6829d3c476a4b5898c55d"
    1.24 +
    1.25  BUILD_DEPENDS="python-dev"
    1.26 +SPLIT="beecrypt-dev"
    1.27  
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	cd $src
    1.32 -	./configure --prefix=/usr --without-cplusplus $CONFIGURE_ARGS &&
    1.33 -	make &&
    1.34 -	make DESTDIR=$DESTDIR install
    1.35 +	./configure \
    1.36 +		--without-cplusplus \
    1.37 +		$CONFIGURE_ARGS &&
    1.38 +	make && make install
    1.39  }
    1.40  
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr/lib
    1.45 -	cp -a $install/usr/lib $fs/usr
    1.46 -	# Deleting unnecessary file
    1.47 -	find $fs/ -name "*.*a" -exec rm -f {} \;
    1.48 +	case $PACKAGE in
    1.49 +		beecrypt) copy @std ;;
    1.50 +		beecrypt-dev) copy @dev ;;
    1.51 +	esac
    1.52  }
    1.53 -