wok diff vde2/receipt @ rev 25526
created recipe for lua5.1-mpack 1.0.9
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 25 07:18:33 2023 +0100 (20 months ago) |
parents | 0c04fc34847a |
children | 5db546345599 |
line diff
1.1 --- a/vde2/receipt Fri Jan 21 10:59:24 2022 +0000 1.2 +++ b/vde2/receipt Sat Feb 25 07:18:33 2023 +0100 1.3 @@ -1,17 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="vde2" 1.7 -VERSION="2.3.1" 1.8 +VERSION="2.3.3" 1.9 CATEGORY="network" 1.10 SHORT_DESC="Virtual Distributed Ethernet." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="GPL2" 1.13 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 -WEB_SITE="http://vde.sourceforge.net/" 1.15 -WGET_URL="$SF_MIRROR/vde/$TARBALL" 1.16 +WEB_SITE="https://github.com/virtualsquare/vde-2/" 1.17 +REPOLOGY="vde" 1.18 + 1.19 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.20 +WGET_URL="https://github.com/virtualsquare/vde-2/archive/refs/tags/v$VERSION.tar.gz" 1.21 1.22 DEPENDS="libcrypto" 1.23 -BUILD_DEPENDS="libcrypto libcrypto-dev" 1.24 +BUILD_DEPENDS="automake libcrypto libcrypto-dev libtool" 1.25 1.26 # What is the latest version available today? 1.27 current_version() 1.28 @@ -24,22 +26,25 @@ 1.29 # Rules to configure and make the package. 1.30 compile_rules() 1.31 { 1.32 - ./configure --prefix=/usr \ 1.33 - --libexecdir=/usr/lib/$PACKAGE \ 1.34 - --sysconfdir=/etc \ 1.35 - --mandir=/usr/share/man \ 1.36 - $CONFIGURE_ARGS && 1.37 + autoreconf --install && 1.38 + ./configure \ 1.39 + --prefix=/usr \ 1.40 + --libexecdir=/usr/lib/$PACKAGE \ 1.41 + --sysconfdir=/etc \ 1.42 + --mandir=/usr/share/man \ 1.43 + $CONFIGURE_ARGS && 1.44 make && 1.45 - make DESTDIR=$DESTDIR install 1.46 + make install DESTDIR=$DESTDIR 1.47 } 1.48 1.49 # Rules to gen a SliTaz package suitable for Tazpkg. 1.50 genpkg_rules() 1.51 { 1.52 mkdir -p $fs/usr/lib/vde2 1.53 - cp -a $install/etc $fs 1.54 - cp -a $install/usr/bin $fs/usr 1.55 - cp -a $install/usr/sbin $fs/usr 1.56 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.57 - cp -a $install/usr/lib/vde2/*.so* $fs/usr/lib/vde2 1.58 + cp -a $install/etc $fs 1.59 + cp -a $install/usr/bin $fs/usr 1.60 + # 2.3.3 not created 1.61 +# cp -a $install/usr/sbin $fs/usr 1.62 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.63 + cp -a $install/usr/lib/vde2/*.so* $fs/usr/lib/vde2 1.64 }