# HG changeset patch # User Hans-G?nter Theisgen # Date 1645511941 -3600 # Node ID 4a3297adbb3f68992a04785fd5a6697136374ddc # Parent fd8dfbdbc24d1ec7ea3a47383bc83645831968e3 updated enet (1.3.14 -> 1.3.17) diff -r fd8dfbdbc24d -r 4a3297adbb3f enet/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/enet/description.txt Tue Feb 22 07:39:01 2022 +0100 @@ -0,0 +1,9 @@ +ENet's purpose is to provide a relatively thin, simple and robust +network communication layer on top of UDP (User Datagram Protocol). +The primary feature it provides is optional reliable, in-order +delivery of packets. + +ENet omits certain higher level networking features such as +authentication, lobbying, server discovery, encryption, or other +similar tasks that are particularly application specific so that +the library remains flexible, portable, and easily embeddable. diff -r fd8dfbdbc24d -r 4a3297adbb3f enet/receipt --- a/enet/receipt Mon Feb 21 17:50:24 2022 +0100 +++ b/enet/receipt Tue Feb 22 07:39:01 2022 +0100 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="enet" -VERSION="1.3.14" +VERSION="1.3.17" CATEGORY="development" -SHORT_DESC="A 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/" @@ -21,20 +21,26 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --enable-crc32 \ + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --enable-crc32 \ $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR install + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/include $fs/usr +# mkdir -p $fs/usr/lib + +# cp -a $install/usr/lib/*a $fs/usr/lib +# cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a + # what about *.so* ? + # this looks rather like a package enet-dev ! }