Date: Sunday, January 6, 2019 @ 21:10:16 Author: alad Revision: 420759
archrelease: copy trunk to community-any Added: moka-icon-theme/repos/community-any/ moka-icon-theme/repos/community-any/PKGBUILD (from rev 420758, moka-icon-theme/trunk/PKGBUILD) ----------+ PKGBUILD | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) Copied: moka-icon-theme/repos/community-any/PKGBUILD (from rev 420758, moka-icon-theme/trunk/PKGBUILD) =================================================================== --- community-any/PKGBUILD (rev 0) +++ community-any/PKGBUILD 2019-01-06 21:10:16 UTC (rev 420759) @@ -0,0 +1,23 @@ +# Maintainer: Alad Wenter <a...@archlinux.org> +# Contributor: xduugu <xdu...@gmx.com> +pkgname=moka-icon-theme +pkgver=5.4.0 +pkgrel=1 +pkgdesc="An open source FreeDesktop icon project by Sam Hewitt" +arch=('any') +url='https://snwh.org/moka' +license=('GPL3' 'CCPL') +depends=('gtk-update-icon-cache' 'faba-icon-theme') +makedepends=('meson') +options=('!strip') +source=("$pkgname-$pkgver.tar.gz::https://github.com/snwh/$pkgname/archive/v$pkgver.tar.gz") +md5sums=('27d2e54bf33bcb428ece6ff2a97e2b67') + +build() { + meson --prefix /usr --buildtype plain "$pkgname-$pkgver" build + ninja -C build +} + +package() { + DESTDIR="$pkgdir" ninja -C build install +}