diff options
-rw-r--r-- | testing/mate-common/APKBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/testing/mate-common/APKBUILD b/testing/mate-common/APKBUILD index f6895daaa8..4473aa519c 100644 --- a/testing/mate-common/APKBUILD +++ b/testing/mate-common/APKBUILD @@ -2,14 +2,14 @@ # Maintainer: pkgname=mate-common pkgver=1.9.0 -pkgrel=0 +pkgrel=1 pkgdesc="Common scripts and macros" url="http://mate-desktop.org/" arch="noarch" -license="CC" +license="GPLv3+" depends="" depends_dev="" -makedepends="autoconf automake gettext" +makedepends="" install="" subpackages="" source="http://pub.mate-desktop.org/releases/1.9/$pkgname-$pkgver.tar.xz" @@ -27,8 +27,13 @@ prepare() { build() { cd "$_builddir" - ./autogen.sh --prefix=/usr || return 1 + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + || return 1 make || return 1 + } package() { |