mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
24 lines
976 B
Bash
24 lines
976 B
Bash
|
# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
||
|
# Contributor: lp76 <l.peduto@gmail.com>
|
||
|
pkgname=tango-generator
|
||
|
pkgver=3.2.3
|
||
|
pkgrel=2
|
||
|
pkgdesc="Generate a icon theme for icons all over the Internet"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://mejogid.ohallwebservices.com/"
|
||
|
license=('GPL')
|
||
|
depends=('dbus-python' 'pygtk' 'pyxdg' 'librsvg' 'imagemagick')
|
||
|
source=("http://ghost1227.com/files/${pkgname}_${pkgver}.tar.gz" \
|
||
|
http://ghost1227.com/files/tango-configurations.tar.gz)
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname"
|
||
|
python setup.py install --root="$pkgdir" || return 1
|
||
|
install -d "$pkgdir/usr/share/pixmaps"
|
||
|
ln -sf /usr/share/icons/hicolor/48x48/apps/tango-generator.png \
|
||
|
"$pkgdir/usr/share/pixmaps/tango-generator.png"
|
||
|
install -d "$pkgdir/usr/share/$pkgname/configurations"
|
||
|
install -D -m644 "$srcdir/configurations/"*.tgc "$pkgdir/usr/share/$pkgname/configurations/"
|
||
|
}
|
||
|
md5sums=('2620eda820e3ae4d13b9840d7822b0bb'
|
||
|
'1c1d4bab3c35f4808260d9a9dc9e229c')
|