wok diff mcrypt/receipt @ rev 24605
Add zmap
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Mar 02 15:59:03 2022 +0000 (2022-03-02) |
parents | 3765f181a6d5 |
children | 7dd01dedad38 |
line diff
1.1 --- a/mcrypt/receipt Sat Nov 30 17:02:58 2013 +0000 1.2 +++ b/mcrypt/receipt Wed Mar 02 15:59:03 2022 +0000 1.3 @@ -13,10 +13,17 @@ 1.4 DEPENDS="zlib mhash libmcrypt" 1.5 BUILD_DEPENDS="libmcrypt-dev libmcrypt-dev mhash-dev" 1.6 1.7 +# What is the latest version available today? 1.8 +current_version() 1.9 +{ 1.10 + wget -O - https://sourceforge.net/projects/mcrypt/files/MCrypt/ 2>/dev/null | \ 1.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 1.12 + sed '/scope="row/!d;s|.*/MCrypt/||;s|/.*||;q' 1.13 +} 1.14 + 1.15 # Rules to configure and make the package. 1.16 compile_rules() 1.17 { 1.18 - cd $src 1.19 ./configure \ 1.20 --prefix=/usr $CONFIGURE_ARGS 2>&1 | grep -v libtoolT && 1.21 make &&