wok-next diff re-alpine/receipt @ rev 20632

gegl: fix packing
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 27 10:53:56 2018 +0300 (2018-04-27)
parents e6615350078d
children d5aab818505e
line diff
     1.1 --- a/re-alpine/receipt	Wed Feb 28 16:28:07 2018 +0200
     1.2 +++ b/re-alpine/receipt	Fri Apr 27 10:53:56 2018 +0300
     1.3 @@ -1,36 +1,31 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="re-alpine"
     1.8  VERSION="2.03"
     1.9  CATEGORY="network"
    1.10 -SHORT_DESC="Re-alpine is the continuation of Alpine (a text-based email client)."
    1.11 +SHORT_DESC="Re-alpine is the continuation of Alpine (a text-based email client)"
    1.12  MAINTAINER="paul@slitaz.org"
    1.13  LICENSE="Apache"
    1.14 +WEB_SITE="http://sourceforge.net/projects/re-alpine/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="http://sourceforge.net/projects/re-alpine/"
    1.18  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.19 -TAGS="mail client"
    1.20  
    1.21 -DEPENDS="openssl pam libldap libsasl ncurses libkrb5 libcomerr3"
    1.22  BUILD_DEPENDS="openssl-dev pam-dev openldap-dev cyrus-sasl-dev libldap krb5-dev"
    1.23  
    1.24 -# Rules to configure and make the package.
    1.25 -compile_rules()
    1.26 -{
    1.27 -	cd $src
    1.28 +compile_rules() {
    1.29  	touch libtoolT	# configure wan't to remove it...
    1.30 +
    1.31  	./configure \
    1.32 -		--prefix=/usr \
    1.33 -		--mandir=/usr/share/man \
    1.34  		--with-ssl-dir=/usr \
    1.35  		$CONFIGURE_ARGS &&
    1.36 -	make && make install
    1.37 +	fix libtool &&
    1.38 +	make &&
    1.39 +	make install
    1.40  }
    1.41  
    1.42 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.43 -genpkg_rules()
    1.44 -{
    1.45 -	mkdir -p $fs/usr
    1.46 -	cp -a $install/usr/bin $fs/usr
    1.47 +genpkg_rules() {
    1.48 +	copy @std
    1.49 +	DEPENDS="openssl pam libldap libsasl ncurses libkrb5 libcomerr3"
    1.50 +	TAGS="mail client"
    1.51  }
    1.52 -