mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
No EOL
787 B
Bash
23 lines
No EOL
787 B
Bash
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
|
|
# Maintainer: James Rayner <james@archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
pkgname=tango-icon-theme
|
|
pkgver=0.8.1
|
|
pkgrel=1
|
|
pkgdesc="The Tango Desktop Project exists to create a consistent user experience"
|
|
arch=('i686' 'x86_64')
|
|
url="http://tango.freedesktop.org"
|
|
license="CCPL-Attribution-ShareAlike-2.5"
|
|
depends=('librsvg')
|
|
makedepends=('imagemagick' 'icon-naming-utils')
|
|
source=(http://tango.freedesktop.org/releases/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('32d5258f448b5982af9cfa4364f31d41')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr --enable-png-creation
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
|
|
install -D COPYING $startdir/pkg/usr/share/licenses/$pkgname/COPYING
|
|
} |