wok-6.x 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 | 86c657b651d4 |
children | 402b08c1fcd0 |
files | blackbox/receipt libquicktime/receipt redis/receipt stella/receipt |
line diff
1.1 --- a/blackbox/receipt Wed Sep 29 12:51:33 2021 +0000 1.2 +++ b/blackbox/receipt Wed Sep 29 20:50:54 2021 +0000 1.3 @@ -40,7 +40,7 @@ 1.4 --libexecdir=/usr/bin \ 1.5 --mandir=/usr/share/man \ 1.6 $CONFIGURE_ARGS && 1.7 - make && 1.8 + make -j 4 && 1.9 make DESTDIR=$DESTDIR install 1.10 } 1.11
2.1 --- a/libquicktime/receipt Wed Sep 29 12:51:33 2021 +0000 2.2 +++ b/libquicktime/receipt Wed Sep 29 20:50:54 2021 +0000 2.3 @@ -13,6 +13,13 @@ 2.4 DEPENDS="gtk+ ffmpeg alsa-lib xorg-libXv mesa xorg-libXaw x264" 2.5 BUILD_DEPENDS="gtk+-dev ffmpeg-dev alsa-lib-dev xorg-libXv-dev xorg-libXaw-dev x264-dev zlib-dev mesa-dev" 2.6 2.7 +current_version() 2.8 +{ 2.9 + wget -O - https://sourceforge.net/projects/$PACKAGE/files/ 2>/dev/null | \ 2.10 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 2.11 + sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|;q" 2.12 +} 2.13 + 2.14 # Rules to configure and make the package. 2.15 compile_rules() 2.16 { 2.17 @@ -23,7 +30,7 @@ 2.18 --with-x264 \ 2.19 --without-doxygen \ 2.20 $CONFIGURE_ARGS && 2.21 - make && 2.22 + make -j 4 && 2.23 make DESTDIR=$DESTDIR install 2.24 } 2.25