# HG changeset patch # User Hans-G?nter Theisgen # Date 1584633247 -3600 # Node ID 4979282c44423e0f8114264c8b94737c34a988eb # Parent f873d435f3fa2b68721527ff64b049d63fa6ea0d updated mm-common (0.9.12 -> 1.0.0) diff -r f873d435f3fa -r 4979282c4442 mm-common/receipt --- a/mm-common/receipt Thu Mar 19 16:46:22 2020 +0100 +++ b/mm-common/receipt Thu Mar 19 16:54:07 2020 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="mm-common" -VERSION="0.9.12" +VERSION="1.0.0" CATEGORY="development" SHORT_DESC="Common build files of the C++ bindings." MAINTAINER="slaxemulator@gmail.com" @@ -11,11 +11,14 @@ TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" +BUILD_DEPENDS="autoconf automake wget" +# busybox wget is not sufficient + # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr && - make -j 1 && + ./autogen.sh --prefix=/usr && + make && make install } @@ -23,5 +26,5 @@ genpkg_rules() { mkdir -p $fs - cp -a $install/usr $fs + cp -a $install/usr $fs }