diff options
author | kh3phr3n | 2016-03-29 12:23:04 +0200 |
---|---|---|
committer | kh3phr3n | 2016-03-29 12:23:04 +0200 |
commit | 3d5530e8e36e1ea02a479af15f738c294c1c630a (patch) | |
tree | e61be1d982d467ca90cdd5a9af6d232599f9bc6e | |
download | aur-3d5530e8e36e1ea02a479af15f738c294c1c630a.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | PKGBUILD | 19 |
3 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..c7f1f9d6a074 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = xcursor-oxygen + pkgdesc = Oxygen cursor themes + pkgver = 5.6.0 + pkgrel = 1 + url = https://projects.kde.org/projects/kde/workspace/oxygen + arch = any + license = LGPL + source = http://download.kde.org/stable/plasma/5.6.0/oxygen-5.6.0.tar.xz + sha256sums = 458eeb0614f075f029ffedb08d71950c5258ad4f6daea0c8cbad89e8a6b27954 + +pkgname = xcursor-oxygen + diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..72e8ffc0db8a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +* diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..deb9d8b31e20 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: Remi Casanova <rc.dev@tuxico.com> + +pkgname=xcursor-oxygen +pkgver=5.6.0 +pkgrel=1 + +arch=('any') +license=('LGPL') +pkgdesc="Oxygen cursor themes" +url="https://projects.kde.org/projects/kde/workspace/oxygen" + +sha256sums=("458eeb0614f075f029ffedb08d71950c5258ad4f6daea0c8cbad89e8a6b27954") +source=("http://download.kde.org/stable/plasma/${pkgver}/oxygen-${pkgver}.tar.xz") + +package() { + install -d -m755 ${pkgdir}/usr/share/icons + cp -r ${srcdir}/oxygen-${pkgver}/cursors/Oxygen_* ${pkgdir}/usr/share/icons +} + |