wok-next view enet/receipt @ rev 21706

updated grep (3.3 -> 3.4)
author Hans-G?nter Theisgen
date Mon Jul 06 14:49:55 2020 +0100 (2020-07-06)
parents d5aab818505e
children
line source
1 # SliTaz package receipt.
3 PACKAGE="enet"
4 VERSION="1.3.15"
5 CATEGORY="development"
6 SHORT_DESC="Network communication layer on top of UDP"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="http://enet.bespin.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/download/$TARBALL"
14 compile_rules()
15 {
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 --enable-crc32 \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$install install
24 }
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*a $fs/usr/lib
31 cp -a $install/usr/include $fs/usr
32 }