diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-11 05:26:08 -0300 |
---|---|---|
committer | prspkt <prspkt@protonmail.com> | 2019-05-30 02:14:14 +0300 |
commit | 135f1b1d350318a0e8b7b987e68999c83738d63e (patch) | |
tree | 71884b09e520eb5e35e58bc1b18fae36e27f44df /testing/moka-icon-theme | |
parent | e35a3a9bf9473e0da9f5e6101d6e46fa8a6a29c4 (diff) | |
download | aports-135f1b1d350318a0e8b7b987e68999c83738d63e.tar.bz2 aports-135f1b1d350318a0e8b7b987e68999c83738d63e.tar.xz |
testing/moka-icon-theme: upgrade to 5.4.0
Diffstat (limited to 'testing/moka-icon-theme')
-rw-r--r-- | testing/moka-icon-theme/APKBUILD | 30 |
1 files changed, 8 insertions, 22 deletions
diff --git a/testing/moka-icon-theme/APKBUILD b/testing/moka-icon-theme/APKBUILD index 9927defd2f..9df531da6c 100644 --- a/testing/moka-icon-theme/APKBUILD +++ b/testing/moka-icon-theme/APKBUILD @@ -1,37 +1,23 @@ # Contributor: Carlo Landmeter <clandmeter@gmail.com> # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=moka-icon-theme -pkgver=5.3.6 +pkgver=5.4.0 pkgrel=0 pkgdesc="Moka Icon Theme" -url="http://snwh.org/moka" +url="https://snwh.org/moka" arch="noarch" -license="CC-BY-SA-4.0" -depends="" -makedepends="automake autoconf libtool" -install="" -subpackages="" +license="CC-BY-SA-4.0 OR GPL-3.0-or-later" +makedepends="meson" options="!strip" source="moka-icon-theme-$pkgver.tar.gz::https://github.com/snwh/moka-icon-theme/archive/v$pkgver.tar.gz" -builddir="$srcdir/moka-icon-theme-$pkgver" build() { - cd "$builddir" - autoreconf -vif - ./configure \ - --build=$CBUILD \ - --host=$CHOST \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --localstatedir=/var \ - || return 1 - make || return 1 + meson --prefix=/usr output + ninja -C output } package() { - cd "$builddir" - make DESTDIR="$pkgdir" install || return 1 + DESTDIR="$pkgdir" ninja -C output install } -sha512sums="b5967eab0e06639b515af5d57d03adb0055c202327a45f5656cc08e87444eff7563a8a7e6a20ec28edef112d4ce5709dd413832d0265d1b33d496067d8c68838 moka-icon-theme-5.3.6.tar.gz" +sha512sums="3cb6889eae3ddfcad68a05fd6cdf5e92b5d78b965b22df1c289f1e274491be8cb967965cbdf430fe218337994b19592546f3cadf8c39ff5e573d6d7e76648238 moka-icon-theme-5.4.0.tar.gz" |