wok diff mmv/receipt @ rev 24072
Add some current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 07 17:56:16 2021 +0000 (2021-07-07) |
parents | 76d0acbe919d |
children | b78e79c31b1f |
line diff
1.1 --- a/mmv/receipt Mon Jan 18 21:43:09 2016 +0100 1.2 +++ b/mmv/receipt Wed Jul 07 17:56:16 2021 +0000 1.3 @@ -9,6 +9,7 @@ 1.4 WEB_SITE="https://packages.debian.org/sid/mmv" 1.5 TARBALL="${PACKAGE}_${VERSION%-*}.orig.tar.gz" 1.6 WGET_URL="http://http.debian.net/debian/pool/main/m/mmv/$TARBALL" 1.7 +EXTRA_SOURCE_FILES="${PACKAGE}_$VERSION.debian.tar.gz" 1.8 1.9 DEPENDS="" 1.10 BUILD_DEPENDS="" 1.11 @@ -16,8 +17,9 @@ 1.12 # Rules to configure and make the package. 1.13 compile_rules() 1.14 { 1.15 - wget http://http.debian.net/debian/pool/main/m/mmv/${PACKAGE}_$VERSION.debian.tar.gz 1.16 - tar -xzf ${PACKAGE}_$VERSION.debian.tar.gz debian/patches/ 1.17 + wget -O "$SOURCES_REPOSITORY/${PACKAGE}_$VERSION.debian.tar.gz" \ 1.18 + http://http.debian.net/debian/pool/main/m/mmv/${PACKAGE}_$VERSION.debian.tar.gz 1.19 + tar -xzf $SOURCES_REPOSITORY/${PACKAGE}_$VERSION.debian.tar.gz debian/patches/ 1.20 cat debian/patches/series | while read file; do 1.21 patch -p1 < debian/patches/$file 1.22 done