Advertisement
darkshines

Updated PKGBUILD for faba-mono-icons-git

Jul 14th, 2014
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.79 KB | None | 0 0
  1. pkgname=faba-mono-icons-git
  2. _pkgname=faba-mono-icons
  3. pkgver=2.0
  4. pkgrel=3
  5. pkgdesc="The monochromatic panel icon sets for Faba."
  6. arch=('any')
  7. url="https://github.com/moka-project/faba-mono-icons"
  8. license=('GPL3')
  9. depends=(faba-icons-git)
  10. makedepends=('git')
  11. optdepends=()
  12. provides=('faba-mono-icons-git')
  13. conflicts=('faba-mono-icons-git')
  14. source=('git+https://github.com/moka-project/faba-mono-icons.git')
  15. md5sums=('SKIP')
  16.  
  17. pkgver() {
  18.   cd $srcdir/$_pkgname
  19.   echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
  20. }
  21.  
  22. package() {
  23.   for theme in Faba-Light Faba-Dark Faba-Mixt; do
  24.     # create theme dir
  25.     install -d -m 755 "$pkgdir"/usr/share/icons/$theme/
  26.  
  27.     # install theme
  28.     cd $srcdir/faba-mono-icons/$theme
  29.     cp -r . "$pkgdir"/usr/share/icons/$theme/
  30.   done
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement