wok rev 23183

updated mm-common (0.9.12 -> 1.0.0)
author Hans-G?nter Theisgen
date Thu Mar 19 16:54:07 2020 +0100 (2020-03-19)
parents f873d435f3fa
children 33169ece31b8
files mm-common/receipt
line diff
     1.1 --- a/mm-common/receipt	Thu Mar 19 16:46:22 2020 +0100
     1.2 +++ b/mm-common/receipt	Thu Mar 19 16:54:07 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  }