wok view libuv/receipt @ rev 25519

created recipes for libuv and libuv-dev 1.44.1
author Hans-G?nter Theisgen
date Fri Feb 24 15:35:59 2023 +0100 (15 months ago)
parents
children 595fe6959202
line source
1 # SliTaz package receipt.
3 PACKAGE="libuv"
4 VERSION="1.44.1"
5 CATEGORY="libs"
6 SHORT_DESC="Cross-platform asychronous I/O."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="MIT ISC"
9 WEB_SITE="https://libuv.org/"
11 TARBALL="$PACKAGE-v$VERSION.tar.gz"
12 WGET_URL="https://dist.libuv.org/dist/v$VERSION/$TARBALL"
14 BUILD_DEPENDS="autoconf automake libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./autogen.sh &&
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --mandir=/usr/share/man \
24 --localstatedir=/var &&
25 make \
26 CFLAGS="$CFLAGS -D__USE_MISC" \
27 BUILDTYPE=Release
28 make install \
29 DESTDIR="$DESTDIR"
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cook_copy_files *.so*
36 }