Advertisement
Guest User

geany-themes-0.21.1-1 PKGBUILD

a guest
May 17th, 2012
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.79 KB | None | 0 0
  1. # Maintainer: Jesús Jerez <jerezmoreno@gmail.com>
  2. # Contributor: Sagar Chalise <chalisesagar@gmail.com>
  3.  
  4. pkgname=geany-themes
  5. pkgver=0.21.1
  6. pkgrel=1
  7. pkgdesc="A collection of color schemes for Geany"
  8. arch=('any')
  9. url="https://github.com/codebrainz/geany-themes"
  10. license=('GPL')
  11. depends=('geany')
  12. source=(https://github.com/downloads/codebrainz/$pkgname/$pkgname-$pkgver.tar.bz2)
  13. sha1sums=('07cc222fc0686f20ff39e461083a081f6a5f534d')
  14.  
  15. package() {
  16.   cd "$srcdir/$pkgname-$pkgver"
  17.  
  18.   # alt.conf already provided by geany
  19.   mv colorschemes/alt{,2}.conf
  20.   sed -i 's|Alternate|&2|' colorschemes/alt2.conf
  21.  
  22.   # install colorschemes
  23.   install -d -m 755 "$pkgdir"/usr/share/geany/colorschemes
  24.   install -m 644 colorschemes/* "$pkgdir"/usr/share/geany/colorschemes/
  25. }
  26.  
  27. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement