diff options
author | cippaciong | 2015-07-05 11:18:57 +0200 |
---|---|---|
committer | cippaciong | 2015-07-05 11:18:57 +0200 |
commit | b0f2726c9026627616f0d0785c1ff023f63c8b00 (patch) | |
tree | 7dd761079b421753e2f6271cec6325ab78781530 | |
download | aur-b0f2726c9026627616f0d0785c1ff023f63c8b00.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 21 |
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..e7d9dfdd345 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = xcursor-pulse-glass + pkgdesc = Pulse Glass cursor theme + pkgver = 1.0 + pkgrel = 3 + url = http://xfce-look.org/content/show.php/Pulse+Glass?content=124442 + arch = any + license = GPL + source = http://xfce-look.org/CONTENT/content-files/124442-Pulse-Glass.tar.gz + md5sums = 9691f12afcbb3a41332f14b6cbdd7353 + +pkgname = xcursor-pulse-glass + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..a04284e061e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: cippaciong <lacapannadelloziotom [at] gmail [dot] com> + +pkgname=xcursor-pulse-glass +_pkgname=Pulse-Glass +pkgver=1.0 +pkgrel=3 +pkgdesc="Pulse Glass cursor theme" +arch=('any') +url="http://xfce-look.org/content/show.php/Pulse+Glass?content=124442" +license=('GPL') +depends=() +source=("http://xfce-look.org/CONTENT/content-files/124442-Pulse-Glass.tar.gz") +md5sums=('9691f12afcbb3a41332f14b6cbdd7353') + +package() { + mkdir -p "$pkgdir/usr/share/icons" + cp -r "$srcdir/$_pkgname" "$pkgdir/usr/share/icons" +} + + +# vim:set ts=2 sw=2 et: |