
geany-themes-0.21.1-1 PKGBUILD
By: a guest on
May 17th, 2012 | syntax:
Bash | size: 0.79 KB | hits: 78 | expires: Never
# Maintainer: Jesús Jerez <jerezmoreno@gmail.com>
# Contributor: Sagar Chalise <chalisesagar@gmail.com>
pkgname=geany-themes
pkgver=0.21.1
pkgrel=1
pkgdesc="A collection of color schemes for Geany"
arch=('any')
url="https://github.com/codebrainz/geany-themes"
license=('GPL')
depends=('geany')
source=(https://github.com/downloads/codebrainz/$pkgname/$pkgname-$pkgver.tar.bz2)
sha1sums=('07cc222fc0686f20ff39e461083a081f6a5f534d')
package() {
cd "$srcdir/$pkgname-$pkgver"
# alt.conf already provided by geany
mv colorschemes/alt{,2}.conf
sed -i 's|Alternate|&2|' colorschemes/alt2.conf
# install colorschemes
install -d -m 755 "$pkgdir"/usr/share/geany/colorschemes
install -m 644 colorschemes/* "$pkgdir"/usr/share/geany/colorschemes/
}
# vim:set ts=2 sw=2 et: