wok diff vde2/receipt @ rev 23621

updated ruby and ruby-dev (2.6.4 -> 2.7.1)
author Hans-G?nter Theisgen
date Tue Apr 14 15:51:31 2020 +0100 (2020-04-14)
parents 79baebcd1145
children 0c04fc34847a
line diff
     1.1 --- a/vde2/receipt	Sat Dec 04 11:49:58 2010 +0100
     1.2 +++ b/vde2/receipt	Tue Apr 14 15:51:31 2020 +0100
     1.3 @@ -5,12 +5,14 @@
     1.4  CATEGORY="network"
     1.5  SHORT_DESC="Virtual Distributed Ethernet."
     1.6  MAINTAINER="pascal.bellard@slitaz.org"
     1.7 -DEPENDS="libcrypto"
     1.8 -BUILD_DEPENDS="libcrypto libcrypto-dev"
     1.9 +LICENSE="GPL2"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.11  WEB_SITE="http://vde.sourceforge.net/"
    1.12  WGET_URL="$SF_MIRROR/vde/$TARBALL"
    1.13  
    1.14 +DEPENDS="libcrypto"
    1.15 +BUILD_DEPENDS="libcrypto libcrypto-dev"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20 @@ -21,16 +23,16 @@
    1.21  	--mandir=/usr/share/man \
    1.22  	$CONFIGURE_ARGS &&
    1.23  	make &&
    1.24 -	make DESTDIR=$PWD/_pkg install
    1.25 +	make DESTDIR=$DESTDIR install
    1.26  }
    1.27  
    1.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.29  genpkg_rules()
    1.30  {
    1.31  	mkdir -p $fs/usr/lib/vde2
    1.32 -	cp -a $_pkg/etc $fs
    1.33 -	cp -a $_pkg/usr/bin $fs/usr
    1.34 -	cp -a $_pkg/usr/sbin $fs/usr
    1.35 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.36 -	cp -a $_pkg/usr/lib/vde2/*.so* $fs/usr/lib/vde2
    1.37 +	cp -a $install/etc $fs
    1.38 +	cp -a $install/usr/bin $fs/usr
    1.39 +	cp -a $install/usr/sbin $fs/usr
    1.40 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.41 +	cp -a $install/usr/lib/vde2/*.so* $fs/usr/lib/vde2
    1.42  }