wok diff libuv/receipt @ rev 25521

created recipes for unibilium and unibilium-dev 2.1.1
author Hans-G?nter Theisgen
date Fri Feb 24 17:05:40 2023 +0100 (16 months ago)
parents
children 595fe6959202
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libuv/receipt	Fri Feb 24 17:05:40 2023 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libuv"
     1.7 +VERSION="1.44.1"
     1.8 +CATEGORY="libs"
     1.9 +SHORT_DESC="Cross-platform asychronous I/O."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="MIT ISC"
    1.12 +WEB_SITE="https://libuv.org/"
    1.13 +
    1.14 +TARBALL="$PACKAGE-v$VERSION.tar.gz"
    1.15 +WGET_URL="https://dist.libuv.org/dist/v$VERSION/$TARBALL"
    1.16 +
    1.17 +BUILD_DEPENDS="autoconf automake libtool"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./autogen.sh &&
    1.23 +	./configure			\
    1.24 +		--prefix=/usr		\
    1.25 +		--sysconfdir=/etc	\
    1.26 +		--mandir=/usr/share/man	\
    1.27 +		--localstatedir=/var &&
    1.28 +	make					\
    1.29 +		CFLAGS="$CFLAGS -D__USE_MISC"	\
    1.30 +		BUILDTYPE=Release
    1.31 +	make	install				\
    1.32 +		DESTDIR="$DESTDIR"
    1.33 +}
    1.34 +
    1.35 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.36 +genpkg_rules()
    1.37 +{
    1.38 +	cook_copy_files	*.so*
    1.39 +}