wok diff mm-common/receipt @ rev 23421
updated perl-yaml-syck (1.31 -> 1.32)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 01 08:00:18 2020 +0100 (2020-04-01) |
parents | 6796b09294f1 |
children | 6831608a1b2a |
line diff
1.1 --- a/mm-common/receipt Tue Apr 30 13:55:53 2019 +0100 1.2 +++ b/mm-common/receipt Wed Apr 01 08:00:18 2020 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="mm-common" 1.7 -VERSION="0.9.12" 1.8 +VERSION="1.0.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Common build files of the C++ bindings." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 @@ -11,11 +11,14 @@ 1.13 TARBALL="$PACKAGE-$VERSION.tar.xz" 1.14 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" 1.15 1.16 +BUILD_DEPENDS="autoconf automake wget" 1.17 +# busybox wget is not sufficient 1.18 + 1.19 # Rules to configure and make the package. 1.20 compile_rules() 1.21 { 1.22 - ./configure --prefix=/usr && 1.23 - make -j 1 && 1.24 + ./autogen.sh --prefix=/usr && 1.25 + make && 1.26 make install 1.27 } 1.28 1.29 @@ -23,5 +26,5 @@ 1.30 genpkg_rules() 1.31 { 1.32 mkdir -p $fs 1.33 - cp -a $install/usr $fs 1.34 + cp -a $install/usr $fs 1.35 }