wok-next diff crosstool-ng/receipt @ rev 21257

encfs: use cmake
author Hans-G?nter Theisgen
date Fri Dec 06 13:47:57 2019 +0100 (2019-12-06)
parents d43bf7aae921
children a8680487d09c
line diff
     1.1 --- a/crosstool-ng/receipt	Wed Mar 21 15:58:17 2018 +0200
     1.2 +++ b/crosstool-ng/receipt	Fri Dec 06 13:47:57 2019 +0100
     1.3 @@ -3,30 +3,27 @@
     1.4  PACKAGE="crosstool-ng"
     1.5  VERSION="1.20.0"
     1.6  CATEGORY="development"
     1.7 -SHORT_DESC="Tool to Build toolchains."
     1.8 +SHORT_DESC="Tool to Build toolchains"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="GPL2"
    1.11 +WEB_SITE="http://ymorin.is-a-geek.org/projects/crosstool"
    1.12 +
    1.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 -WEB_SITE="http://ymorin.is-a-geek.org/projects/crosstool"
    1.15  WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$TARBALL"
    1.16  
    1.17 -DEPENDS="slitaz-toolchain"
    1.18  BUILD_DEPENDS="subversion flex cvs gawk texinfo ncurses-dev automake libtool \
    1.19  gperf"
    1.20  
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 +compile_rules() {
    1.25  	./bootstrap
    1.26  	./configure \
    1.27  		--prefix=/usr \
    1.28  		$CONFIGURE_ARGS &&
    1.29  	make &&
    1.30 -	make DESTDIR=$DESTDIR install
    1.31 +	make DESTDIR=$install install
    1.32  }
    1.33  
    1.34 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 -genpkg_rules()
    1.36 -{
    1.37 +genpkg_rules() {
    1.38  	cp -a $install/usr $fs
    1.39 +	DEPENDS="slitaz-toolchain"
    1.40  }