wok-current rev 24516
updated enet (1.3.14 -> 1.3.17)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Feb 22 07:39:01 2022 +0100 (2022-02-22) |
parents | fd8dfbdbc24d |
children | efae52aa2140 |
files | enet/description.txt enet/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/enet/description.txt Tue Feb 22 07:39:01 2022 +0100 1.3 @@ -0,0 +1,9 @@ 1.4 +ENet's purpose is to provide a relatively thin, simple and robust 1.5 +network communication layer on top of UDP (User Datagram Protocol). 1.6 +The primary feature it provides is optional reliable, in-order 1.7 +delivery of packets. 1.8 + 1.9 +ENet omits certain higher level networking features such as 1.10 +authentication, lobbying, server discovery, encryption, or other 1.11 +similar tasks that are particularly application specific so that 1.12 +the library remains flexible, portable, and easily embeddable.
2.1 --- a/enet/receipt Mon Feb 21 17:50:24 2022 +0100 2.2 +++ b/enet/receipt Tue Feb 22 07:39:01 2022 +0100 2.3 @@ -1,9 +1,9 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="enet" 2.7 -VERSION="1.3.14" 2.8 +VERSION="1.3.17" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="A relatively thin, simple and robust network communication layer on top of UDP" 2.11 +SHORT_DESC="A relatively thin, simple and robust network communication layer on top of UDP." 2.12 MAINTAINER="devl547@gmail.com" 2.13 LICENSE="MIT" 2.14 WEB_SITE="http://enet.bespin.org/" 2.15 @@ -21,20 +21,26 @@ 2.16 # Rules to configure and make the package. 2.17 compile_rules() 2.18 { 2.19 - ./configure \ 2.20 - --prefix=/usr \ 2.21 - --infodir=/usr/share/info \ 2.22 - --mandir=/usr/share/man \ 2.23 - --enable-crc32 \ 2.24 + ./configure \ 2.25 + --prefix=/usr \ 2.26 + --infodir=/usr/share/info \ 2.27 + --mandir=/usr/share/man \ 2.28 + --enable-crc32 \ 2.29 $CONFIGURE_ARGS && 2.30 - make -j 1 && 2.31 - make DESTDIR=$DESTDIR install 2.32 + make && 2.33 + make install DESTDIR=$DESTDIR 2.34 } 2.35 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr/lib 2.40 - cp -a $install/usr/lib/*a $fs/usr/lib 2.41 - cp -a $install/usr/include $fs/usr 2.42 +# mkdir -p $fs/usr/lib 2.43 + 2.44 +# cp -a $install/usr/lib/*a $fs/usr/lib 2.45 +# cp -a $install/usr/include $fs/usr 2.46 + cook_copy_folders include 2.47 + cook_copy_folders pkgconfig 2.48 + cook_copy_files *.*a 2.49 + # what about *.so* ? 2.50 + # this looks rather like a package enet-dev ! 2.51 }