Advertisement
Guest User

PKGBUILD xcursor-breeze

a guest
Mar 8th, 2015
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.68 KB | None | 0 0
  1. # Contributor: grimi <grimi at poczta dot fm>
  2.  
  3. pkgname=xcursor-breeze
  4. pkgver=20150109
  5. pkgrel=1
  6. pkgdesc="Breeze standart cursor theme"
  7. arch=('any')
  8. url="https://kver.wordpress.com/2015/01/09/curses-i-mean-cursors/"
  9. license=('GPL')
  10. depends=('libxcursor')
  11. makedepends=('unzip')
  12. source=("${pkgname}-${pkgver}.zip::https://share.kde.org/public.php?service=files&t=1525897da49fbebacc28e5b6b1836382&download")
  13. md5sums=('edbd19776aa3cbc4c0241fa1728c023f')
  14.  
  15. package() {
  16.   find Breeze/ -type f -not -name "*~" \
  17.       -exec install -Dm644 "{}" "${pkgdir}/usr/share/icons/{}" \;
  18.   find Breeze/ -type l \
  19.       -exec cp -d "{}" "${pkgdir}/usr/share/icons/{}" \;
  20. }
  21.  
  22. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement