blob: 7af12fa617b600df207ecee969eeb193ea6e30df (
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
|
pkgname=mate-icon-theme
pkgver=1.1.1
pkgrel=1
pkgdesc="MATE icon theme"
arch=('any')
license=('GPL')
depends=('hicolor-icon-theme' 'icon-naming-utils' 'gtk-update-icon-cache')
makedepends=('intltool')
url="http://matsusoft.com.ar/projects/mate/"
groups=('mate')
source=()
sha256sums=()
install=mate-icon-theme.install
build() {
cd "${srcdir}/../../../"
./autogen.sh --prefix=/usr || return 1
make || return 1
}
package() {
cd "${srcdir}/../../../"
make DESTDIR="${pkgdir}" install
#don't include icon cache
rm -f "${pkgdir}/usr/share/icons/mate/icon-theme.cache"
}
|