PKGBUILD 431 B

123456789101112131415161718192021
  1. pkgname=systemsounds-intothegnu-git
  2. pkgver=1.0.r0.gf0b4c6a
  3. pkgrel=2
  4. license=(CC0)
  5. groups=('intothegnu-config')
  6. arch=('any')
  7. depends=()
  8. source=(git+https://notabug.org/BezierQuadratic/SystemSounds.git)
  9. sha256sums=('SKIP')
  10. pkgver(){
  11. cd SystemSounds
  12. git describe --long --tags | sed 's/-/.r/;s/-/./'
  13. }
  14. package(){
  15. cd $srcdir/SystemSounds
  16. mkdir -p $pkgdir/usr/share/sounds/ITGC
  17. install -m 644 ./* $pkgdir/usr/share/sounds/ITGC
  18. }