wok rev 20887

updated enet (1.2.1 -> 1.3.14)
author Hans-G?nter Theisgen
date Mon Feb 25 15:29:18 2019 +0100 (2019-02-25)
parents 56069328196e
children df02951ceb75
files enet/receipt
line diff
     1.1 --- a/enet/receipt	Mon Feb 25 15:05:57 2019 +0100
     1.2 +++ b/enet/receipt	Mon Feb 25 15:29:18 2019 +0100
     1.3 @@ -1,22 +1,26 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="enet"
     1.7 -VERSION="1.2.1"
     1.8 +VERSION="1.3.14"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="relatively thin, simple and robust network communication layer on top of UDP"
    1.11 +SHORT_DESC="A relatively thin, simple and robust network communication layer on top of UDP"
    1.12  MAINTAINER="devl547@gmail.com"
    1.13  LICENSE="MIT"
    1.14 +WEB_SITE="http://enet.bespin.org/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="http://enet.bespin.org/"
    1.18  WGET_URL="$WEB_SITE/download/$TARBALL"
    1.19  
    1.20  # Rules to configure and make the package.
    1.21  compile_rules()
    1.22  {
    1.23 -	cd $src
    1.24 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.25 -	--mandir=/usr/share/man --enable-crc32 $CONFIGURE_ARGS &&
    1.26 -	make &&
    1.27 +	./configure \
    1.28 +		--prefix=/usr \
    1.29 +		--infodir=/usr/share/info \
    1.30 +		--mandir=/usr/share/man \
    1.31 +		--enable-crc32 \
    1.32 +		$CONFIGURE_ARGS &&
    1.33 +	make -j 1 &&
    1.34  	make DESTDIR=$DESTDIR install
    1.35  }
    1.36