[arch-commits] Commit in elementary-icon-theme/repos/community-any (PKGBUILD PKGBUILD)

Maxime Gauduin alucryd at archlinux.org
Thu Nov 2 15:40:23 UTC 2017


    Date: Thursday, November 2, 2017 @ 15:40:18
  Author: alucryd
Revision: 265173

archrelease: copy trunk to community-any

Added:
  elementary-icon-theme/repos/community-any/PKGBUILD
    (from rev 265172, elementary-icon-theme/trunk/PKGBUILD)
Deleted:
  elementary-icon-theme/repos/community-any/PKGBUILD

----------+
 PKGBUILD |   75 ++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 42 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2017-11-02 15:37:06 UTC (rev 265172)
+++ PKGBUILD	2017-11-02 15:40:18 UTC (rev 265173)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-# Contributor: Diego Principe <cdprincipe at gmail.com>
-# Contributor: paterbrown <paterbrown at silberhelme.de>
-# Contributor: Josip <josipponjavic at gmail.com>
-
-pkgname=elementary-icon-theme
-pkgver=4.2.0
-pkgrel=1
-pkgdesc='An icon theme designed to be smooth, sexy, clear, and efficient'
-arch=('any')
-url='https://launchpad.net/elementaryicons'
-license=('GPL3')
-depends=('gtk-update-icon-cache' 'hicolor-icon-theme')
-options=('!emptydirs' '!strip')
-source=("https://launchpad.net/elementaryicons/${pkgver%%.*}.x/${pkgver}/+download/elementary-icon-theme-${pkgver}.tar.xz")
-sha256sums=('7505f498f712713415bc8a5468cd20fba9689cd7b42878659bad1118294c3470')
-
-prepare() {
-  cd elementary-icon-theme-${pkgver}
-
-  rm AUTHORS CONTRIBUTORS COPYING
-}
-
-package() {
-  install -dm 755 "${pkgdir}"/usr/share/icons
-  cp -dr --no-preserve='ownership' elementary-icon-theme-${pkgver} "${pkgdir}"/usr/share/icons/elementary
-
-  find "${pkgdir}" -type d -exec chmod 755 {} +
-  find "${pkgdir}" -type f -exec chmod 644 {} +
-}
-
-# vim: ts=2 sw=2 et:

Copied: elementary-icon-theme/repos/community-any/PKGBUILD (from rev 265172, elementary-icon-theme/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2017-11-02 15:40:18 UTC (rev 265173)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Diego Principe <cdprincipe at gmail.com>
+# Contributor: paterbrown <paterbrown at silberhelme.de>
+# Contributor: Josip <josipponjavic at gmail.com>
+
+pkgname=elementary-icon-theme
+pkgver=4.3.1
+pkgrel=1
+pkgdesc='Named, vector icons for elementary OS'
+arch=('any')
+url='https://github.com/elementary/icons'
+license=('GPL3')
+groups=('pantheon')
+depends=('hicolor-icon-theme')
+makedepends=('cmake')
+source=("elementary-icon-theme-${pkgver}.tar.gz::https://github.com/elementary/icons/archive/${pkgver}.tar.gz")
+sha256sums=('2fcb35760aa3285a17ecd5ef127fe5384a20cb6e86c2b4cd9ed7942063a70a10')
+
+prepare() {
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake ../icons-${pkgver} \
+    -DCMAKE_BUILD_TYPE='Release' \
+    -DCMAKE_INSTALL_PREFIX='/usr'
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list