Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 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-Mono-Dark Faba-Mono; 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