mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
37 lines
905 B
Plaintext
37 lines
905 B
Plaintext
# Contributor: Alan Lacerda <alacerda@alpinelinux.org>
|
|
# Maintainer: Alan Lacerda <alacerda@alpinelinux.org>
|
|
pkgname=mate-icon-theme
|
|
pkgver=1.19.0
|
|
pkgrel=0
|
|
pkgdesc="MATE desktop icons"
|
|
url="https://github.com/mate-desktop/mate-icon-theme"
|
|
arch="noarch"
|
|
license="GPL-2.0"
|
|
depends="mate-common"
|
|
makedepends="icon-naming-utils intltool"
|
|
subpackages="$pkgname-lang"
|
|
source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
DATADIRNAME=share ./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--sysconfdir=/etc \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
sha512sums="1259fae2bf4f68512ad57cf6f184e720e3ca5d9adb5c0934402da228c5f9cce824762380f4fd2b8d66d734b52a263954fb50e52492f7486c4665d1b65c107238 mate-icon-theme-1.19.0.tar.xz"
|