wok-6.x 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 (21 months ago) |
parents | adcde2ac1f32 |
children | 11e12a2c0eb8 |
files | libuv-dev/receipt libuv/description.txt libuv/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libuv-dev/receipt Fri Feb 24 15:35:59 2023 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libuv-dev" 1.7 +VERSION="1.44.1" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Cross-platform asychronous I/O - development files." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="MIT ISC" 1.12 +WEB_SITE="https://libuv.org/" 1.13 + 1.14 +DEPENDS="libuv" 1.15 +WANTED="libuv" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + get_dev_files 1.21 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libuv/description.txt Fri Feb 24 15:35:59 2023 +0100 2.3 @@ -0,0 +1,3 @@ 2.4 +Libuv is a multi-platform support library with a focus on asynchronous I/O. 2.5 +It was primarily developed for use by Node.js, 2.6 +but it’s also used by Luvit, Julia, uvloop, and others.
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/libuv/receipt Fri Feb 24 15:35:59 2023 +0100 3.3 @@ -0,0 +1,36 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="libuv" 3.7 +VERSION="1.44.1" 3.8 +CATEGORY="libs" 3.9 +SHORT_DESC="Cross-platform asychronous I/O." 3.10 +MAINTAINER="maintainer@slitaz.org" 3.11 +LICENSE="MIT ISC" 3.12 +WEB_SITE="https://libuv.org/" 3.13 + 3.14 +TARBALL="$PACKAGE-v$VERSION.tar.gz" 3.15 +WGET_URL="https://dist.libuv.org/dist/v$VERSION/$TARBALL" 3.16 + 3.17 +BUILD_DEPENDS="autoconf automake libtool" 3.18 + 3.19 +# Rules to configure and make the package. 3.20 +compile_rules() 3.21 +{ 3.22 + ./autogen.sh && 3.23 + ./configure \ 3.24 + --prefix=/usr \ 3.25 + --sysconfdir=/etc \ 3.26 + --mandir=/usr/share/man \ 3.27 + --localstatedir=/var && 3.28 + make \ 3.29 + CFLAGS="$CFLAGS -D__USE_MISC" \ 3.30 + BUILDTYPE=Release 3.31 + make install \ 3.32 + DESTDIR="$DESTDIR" 3.33 +} 3.34 + 3.35 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.36 +genpkg_rules() 3.37 +{ 3.38 + cook_copy_files *.so* 3.39 +}