# HG changeset patch # User Hans-G?nter Theisgen # Date 1551104958 -3600 # Node ID d00daa25e4a87c73b2b5cf0fd6240cbbdf96e0f5 # Parent 56069328196e802a70de29bea0693f4a08d1af3b updated enet (1.2.1 -> 1.3.14) diff -r 56069328196e -r d00daa25e4a8 enet/receipt --- a/enet/receipt Mon Feb 25 15:05:57 2019 +0100 +++ b/enet/receipt Mon Feb 25 15:29:18 2019 +0100 @@ -1,22 +1,26 @@ # SliTaz package receipt. PACKAGE="enet" -VERSION="1.2.1" +VERSION="1.3.14" CATEGORY="development" -SHORT_DESC="relatively thin, simple and robust network communication layer on top of UDP" +SHORT_DESC="A relatively thin, simple and robust network communication layer on top of UDP" MAINTAINER="devl547@gmail.com" LICENSE="MIT" +WEB_SITE="http://enet.bespin.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://enet.bespin.org/" WGET_URL="$WEB_SITE/download/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man --enable-crc32 $CONFIGURE_ARGS && - make && + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --enable-crc32 \ + $CONFIGURE_ARGS && + make -j 1 && make DESTDIR=$DESTDIR install }