wok-next diff litmus/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents a3c581bf52b8
children
line diff
     1.1 --- a/litmus/receipt	Fri Aug 10 12:53:17 2018 +0300
     1.2 +++ b/litmus/receipt	Tue Sep 01 11:04:25 2020 +0000
     1.3 @@ -1,34 +1,25 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="litmus"
     1.8  VERSION="0.12.1"
     1.9  CATEGORY="network"
    1.10 -SHORT_DESC="WEBDAV server protocol compliance test suite."
    1.11 +SHORT_DESC="WEBDAV server protocol compliance test suite"
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="https://web.archive.org/web/20171006064353/http://www.webdav.org/neon/litmus"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="https://web.archive.org/web/20171006064353/http://www.webdav.org/neon/litmus"
    1.18  WGET_URL="$WEB_SITE/$TARBALL"
    1.19  
    1.20 -DEPENDS="openssl libkrb5 libcomerr3 expat neon readline zlib"
    1.21  BUILD_DEPENDS="openssl-dev krb5-dev expat-dev neon-dev readline-dev"
    1.22  
    1.23 -# Rules to configure and make the package.
    1.24 -compile_rules()
    1.25 -{
    1.26 -	cd $src
    1.27 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.28 -	--libexecdir=/usr/lib --mandir=/usr/share/man \
    1.29 -	$CONFIGURE_ARGS &&
    1.30 +compile_rules() {
    1.31 +	./configure $CONFIGURE_ARGS &&
    1.32  	make &&
    1.33 -	make DESTDIR=$DESTDIR install
    1.34 +	make DESTDIR=$install install
    1.35  }
    1.36  
    1.37 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.38 -genpkg_rules()
    1.39 -{
    1.40 -	mkdir -p $fs/usr
    1.41 -	cp -a $install/usr/bin $fs/usr
    1.42 -	cp -a $install/usr/lib $fs/usr
    1.43 +genpkg_rules() {
    1.44 +	copy @std
    1.45 +	DEPENDS="openssl libkrb5 libcomerr3 expat neon readline zlib"
    1.46  }
    1.47 -