Date: Thursday, February 28, 2013 @ 11:00:29
Author: alucryd
Revision: 85251
archrelease: copy trunk to community-any
Added:
faience-icon-theme/repos/community-any/
faience-icon-theme/repos/community-any/PKGBUILD
(from rev 85250, faience-icon-theme/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: faience-icon-theme/repos/community-any/PKGBUILD (from rev 85250,
faience-icon-theme/trunk/PKGBUILD)
===================================================================
--- community-any/PKGBUILD (rev 0)
+++ community-any/PKGBUILD 2013-02-28 10:00:29 UTC (rev 85251)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Ner0 <[email protected]>
+# Contributor: Sander Deryckere <[email protected]>
+
+pkgname=faience-icon-theme
+pkgver=0.5.1
+pkgrel=2
+pkgdesc="An icon theme based on Faenza"
+url="http://tiheum.deviantart.com/art/Faience-icon-theme-255099649"
+license=('GPL3')
+arch=('any')
+depends=('faenza-icon-theme')
+options=('!strip')
+source=("http://ppa.launchpad.net/tiheum/equinox/ubuntu/pool/main/f/${pkgname}/${pkgname}_${pkgver}.tar.gz")
+sha256sums=('da4e6e921c465caeb8904d4fc6a183b173c8000c08abce625b5b6739f5a0867a')
+
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver%.*}
+
+# Install
+ install -dm 755 "${pkgdir}"/usr/share/icons
+ cp -dr --no-preserve=ownership Faience* "${pkgdir}"/usr/share/icons/
+
+# Fix permissions
+ find "${pkgdir}" -type d -exec chmod 755 {} +
+ find "${pkgdir}" -type f -exec chmod 644 {} +
+}
+
+# vim: ts=2 sw=2 et: