wok-next view enet/receipt @ rev 21489
updated apache-ant (1.9.4 -> 1.10.8)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jun 18 16:46:08 2020 +0100 (2020-06-18) |
parents | fcdd50638150 |
children | 1766aee487d7 |
line source
1 # SliTaz package receipt.
3 PACKAGE="enet"
4 VERSION="1.2.1"
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 ./configure \
16 --prefix=/usr \
17 --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 --enable-crc32 \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$install install
23 }
25 genpkg_rules() {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*a $fs/usr/lib
28 cp -a $install/usr/include $fs/usr
29 }