[arch-commits] Commit in human-icon-theme/trunk (PKGBUILD human-icon-theme.install)

2016-05-06 Thread Evangelos Foutras
Date: Saturday, May 7, 2016 @ 07:23:17
  Author: foutrelis
Revision: 174036

upgpkg: human-icon-theme 0.36-5

Remove install file.

Modified:
  human-icon-theme/trunk/PKGBUILD
Deleted:
  human-icon-theme/trunk/human-icon-theme.install

--+
 PKGBUILD |3 +--
 human-icon-theme.install |   13 -
 2 files changed, 1 insertion(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-07 05:23:14 UTC (rev 174035)
+++ PKGBUILD2016-05-07 05:23:17 UTC (rev 174036)
@@ -4,7 +4,7 @@
 
 pkgname=human-icon-theme
 pkgver=0.36
-pkgrel=4
+pkgrel=5
 pkgdesc="Ubuntu's Human icon theme"
 arch=('any')
 url="http://launchpad.net/human-icon-theme/;
@@ -12,7 +12,6 @@
 depends=('tangerine-icon-theme' 'gtk-update-icon-cache')
 makedepends=('intltool' 'gettext' 'imagemagick' 'icon-naming-utils' 'librsvg'
  'python2')
-install=$pkgname.install
 
source=(http://archive.ubuntu.com/ubuntu/pool/universe/h/$pkgname/${pkgname}_$pkgver.tar.gz
 archlinux-icon-crystal-48.svg)
 sha256sums=('56d9c9da5fe161634f28bdc45171f3f615034819fbf45f1f7bf4bf9675c59777'

Deleted: human-icon-theme.install
===
--- human-icon-theme.install2016-05-07 05:23:14 UTC (rev 174035)
+++ human-icon-theme.install2016-05-07 05:23:17 UTC (rev 174036)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/Human
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:


[arch-commits] Commit in human-icon-theme/trunk (PKGBUILD human-icon-theme.install)

2015-03-23 Thread Evangelos Foutras
Date: Monday, March 23, 2015 @ 07:48:10
  Author: foutrelis
Revision: 129775

upgpkg: human-icon-theme 0.36-4

- Lower minimum size for scalable icons; fixes issue with oversized
  emblem-imporant icon in Evolution (FS#44241).
- Create icon theme cache file.

Added:
  human-icon-theme/trunk/human-icon-theme.install
Modified:
  human-icon-theme/trunk/PKGBUILD

--+
 PKGBUILD |   13 +++--
 human-icon-theme.install |   13 +
 2 files changed, 24 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-23 03:30:44 UTC (rev 129774)
+++ PKGBUILD2015-03-23 06:48:10 UTC (rev 129775)
@@ -4,19 +4,28 @@
 
 pkgname=human-icon-theme
 pkgver=0.36
-pkgrel=3
+pkgrel=4
 pkgdesc=Ubuntu's Human icon theme
 arch=('any')
 url=http://launchpad.net/human-icon-theme/;
 license=('custom:cc-by-sa-2.5')
-depends=('tangerine-icon-theme')
+depends=('tangerine-icon-theme' 'gtk-update-icon-cache')
 makedepends=('intltool' 'gettext' 'imagemagick' 'icon-naming-utils' 'librsvg'
  'python2')
+install=$pkgname.install
 
source=(http://archive.ubuntu.com/ubuntu/pool/universe/h/$pkgname/${pkgname}_$pkgver.tar.gz
 archlinux-icon-crystal-48.svg)
 sha256sums=('56d9c9da5fe161634f28bdc45171f3f615034819fbf45f1f7bf4bf9675c59777'
 '6c5307e8a8ae06970c16278db557184dd91366bf6233ca55d2b7de942e66b821')
 
+prepare() {
+  cd $srcdir/$pkgname
+
+  # Lower minimum size for scalable icons; fixes issue with oversized
+  # emblem-imporant icon in Evolution (FS#44241)
+  sed -i 's/MinSize=32/MinSize=8/' index.theme.in
+}
+
 build() {
   cd $srcdir/$pkgname
 

Added: human-icon-theme.install
===
--- human-icon-theme.install(rev 0)
+++ human-icon-theme.install2015-03-23 06:48:10 UTC (rev 129775)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/Human
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et: