blob: 795e27229f04a8fe66f9ded45f09257b985db003 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Carlo Landmeter <clandmeter@gmail.com>
pkgname=moka-icon-theme
pkgver=5.3.5
pkgrel=0
pkgdesc="Moka Icon Theme"
url="http://snwh.org/moka"
arch="noarch"
license="CC-BY-SA-4.0"
depends=""
makedepends="automake autoconf libtool"
install=""
subpackages=""
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
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install || return 1
}
md5sums="e52fb3c39bae53f547e61dd92bebf173 moka-icon-theme-5.3.5.tar.gz"
sha256sums="91d1d702501fca85b7c8dedbc690884d697e482b732cd3801febd5f7c0525918 moka-icon-theme-5.3.5.tar.gz"
sha512sums="81be63f0fe4b47eb70ca63681b40053c8facb7277d5df34212592a1fc7c349679508551e6ff67123127d372e88f61062ce59dd9c8ed6aaa02b49ef9e884e2b07 moka-icon-theme-5.3.5.tar.gz"
|