blob: 8582dc4dee663c26ac763b5b694176b43f62d5b6 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=tango-icon-theme
pkgver=0.8.90
pkgrel=0
pkgdesc="The Tango Desktop Project exists to create a consistent user experience"
url="http://tango.freedesktop.org"
arch="all"
license="CCPL-Attribution-ShareAlike-2.5"
depends=
makedepends="pkgconfig intltool icon-naming-utils imagemagick-dev libiconv-dev"
source="http://tango.freedesktop.org/releases/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
build () {
cd "$_builddir"
./configure --prefix=/usr
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
install -D COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
}
md5sums="0795895d2f20eddcbd2bffe94ed431a6 tango-icon-theme-0.8.90.tar.gz"
|