wok diff libluv/receipt @ rev 25531

Add some current_version()
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 27 10:05:50 2023 +0000 (19 months ago)
parents 97ca3cd2cfe4
children 5db546345599
line diff
     1.1 --- a/libluv/receipt	Sat Feb 25 10:11:09 2023 +0100
     1.2 +++ b/libluv/receipt	Mon Feb 27 10:05:50 2023 +0000
     1.3 @@ -15,6 +15,13 @@
     1.4  DEPENDS="libuv"
     1.5  BUILD_DEPENDS="cmake libuv-dev luajit-dev ninja"
     1.6  
     1.7 +# What is the latest version available today?
     1.8 +current_version()
     1.9 +{
    1.10 +	wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
    1.11 +	sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;s|-|.|;q'
    1.12 +}
    1.13 +
    1.14  # Rules to configure and make the package.
    1.15  compile_rules()
    1.16  {
    1.17 @@ -26,7 +33,7 @@
    1.18  		-DLUA_BUILD_TYPE=System		\
    1.19  		-DBUILD_MODULE=OFF		\
    1.20  		-DBUILD_SHARED_LIBS=ON		\
    1.21 -		-DBUILD_STATIC_LIBS=OFF
    1.22 +		-DBUILD_STATIC_LIBS=ON
    1.23  	cmake	--build _build
    1.24  	DESTDIR="$DESTDIR" cmake --install _build
    1.25  }