wok diff enet/receipt @ rev 21115
libaio: fix genpkg_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Mar 19 18:51:13 2019 +0100 (2019-03-19) |
parents | fcdd50638150 |
children | 83b97236db32 |
line diff
1.1 --- a/enet/receipt Mon Dec 02 16:43:36 2013 +0000 1.2 +++ b/enet/receipt Tue Mar 19 18:51:13 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