summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Tran2017-04-17 00:22:07 +1000
committerVictor Tran2017-04-17 00:22:07 +1000
commit965fafee26ab30c351797f88ba3160f83ce6a48e (patch)
tree142098fd1ffad99f28acf1bab8a08bd9e2101a22
downloadaur-965fafee26ab30c351797f88ba3160f83ce6a48e.tar.gz
Initial Commit
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD20
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..f38c809ea3f1
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = contemporary-icons
+ pkgdesc = Contemporary Icons
+ pkgver = 1.0
+ pkgrel = 0
+ url = http://vicr123.github.io/contemporary
+ arch = any
+ license = cc-by-sa-4.0
+ source = contemporary-icons-1.0::git+https://github.com/vicr123/contemporary-icons.git
+ sha256sums = SKIP
+
+pkgname = contemporary-icons
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..ef047326bcf8
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+
+# Maintainer: Victor Tran <vicr12345 at gmail dot com>
+pkgname=contemporary-icons
+pkgver=1.0
+pkgrel=0
+pkgdesc="Contemporary Icons"
+arch=("any")
+url="http://vicr123.github.io/contemporary"
+license=('cc-by-sa-4.0')
+depends=()
+makedepends=()
+source=("$pkgname-$pkgver"::'git+https://github.com/vicr123/contemporary-icons.git')
+sha256sums=('SKIP')
+
+package() {
+ mkdir -p "$pkgdir/usr/share/icons/contemporary"
+ cp -r "$pkgname-$pkgver/"* "$pkgdir/usr/share/icons/contemporary/"
+ mkdir -p "$pkgdir/usr/share/licenses/$pkgname/"
+ mv "$pkgdir/usr/share/icons/contemporary/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/"
+}