wok diff libquicktime/receipt @ rev 24114
black, libquicktime, redis, stella: make -j 4
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Sep 29 20:50:54 2021 +0000 (2021-09-29) |
parents | 6020e80e880a |
children | 3abeffdae80b |
line diff
1.1 --- a/libquicktime/receipt Tue May 13 14:25:38 2014 +0000 1.2 +++ b/libquicktime/receipt Wed Sep 29 20:50:54 2021 +0000 1.3 @@ -13,6 +13,13 @@ 1.4 DEPENDS="gtk+ ffmpeg alsa-lib xorg-libXv mesa xorg-libXaw x264" 1.5 BUILD_DEPENDS="gtk+-dev ffmpeg-dev alsa-lib-dev xorg-libXv-dev xorg-libXaw-dev x264-dev zlib-dev mesa-dev" 1.6 1.7 +current_version() 1.8 +{ 1.9 + wget -O - https://sourceforge.net/projects/$PACKAGE/files/ 2>/dev/null | \ 1.10 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 1.11 + sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|;q" 1.12 +} 1.13 + 1.14 # Rules to configure and make the package. 1.15 compile_rules() 1.16 { 1.17 @@ -23,7 +30,7 @@ 1.18 --with-x264 \ 1.19 --without-doxygen \ 1.20 $CONFIGURE_ARGS && 1.21 - make && 1.22 + make -j 4 && 1.23 make DESTDIR=$DESTDIR install 1.24 } 1.25