summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSammysHP2015-09-16 15:50:20 +0200
committerSammysHP2015-09-16 15:50:20 +0200
commitf620478474fa00401a8d851ffe39acef7bdd9a07 (patch)
tree20a853bf9f5a02cf552ab5f501200f62157f8def
downloadaur-f620478474fa00401a8d851ffe39acef7bdd9a07.tar.gz
Copy from AUR3
-rw-r--r--.SRCINFO15
-rw-r--r--.gitignore5
-rw-r--r--PKGBUILD19
3 files changed, 39 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..14c58de5d663
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = humanity-icon-theme
+ pkgdesc = Latest Humanity icons from Ubuntu without modification
+ pkgver = 0.6.8
+ pkgrel = 1
+ url = https://launchpad.net/humanity
+ arch = any
+ license = GPL2
+ conflicts = humanity-icons
+ options = !emptydirs
+ source = https://launchpad.net/ubuntu/+archive/primary/+files/humanity-icon-theme_0.6.8.tar.gz
+ sha256sums = 9187da55d24fffa311175140c525ce48e8fd0a80370b48b30f34dccfb28538aa
+ sha512sums = 23d0f3c1d57fcac56e343f209ee3965bb3ee9c39c1e2c73d80b906380afb2878562c82b6d6fc5ccf40324403572a97505841b03934f45a56c53ea59c5b48dec0
+
+pkgname = humanity-icon-theme
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..0a7995ff36de
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+pkg/
+src/
+*.tar.xz
+*.tar.gz
+*.tar
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..45d24e302657
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Limao Luo <luolimao+AUR@gmail.com>
+
+pkgname=humanity-icon-theme
+pkgver=0.6.8
+pkgrel=1
+pkgdesc="Latest Humanity icons from Ubuntu without modification"
+arch=(any)
+url=https://launchpad.net/humanity
+license=(GPL2)
+conflicts=(humanity-icons)
+options=(!emptydirs)
+source=(https://launchpad.net/ubuntu/+archive/primary/+files/${pkgname}_$pkgver.tar.gz)
+sha256sums=('9187da55d24fffa311175140c525ce48e8fd0a80370b48b30f34dccfb28538aa')
+sha512sums=('23d0f3c1d57fcac56e343f209ee3965bb3ee9c39c1e2c73d80b906380afb2878562c82b6d6fc5ccf40324403572a97505841b03934f45a56c53ea59c5b48dec0')
+
+package() {
+ install -d "$pkgdir"/usr/share/icons/
+ cp -r $pkgname-$pkgver/Humanity{,-Dark} "$pkgdir"/usr/share/icons/
+}