Date: Wednesday, January 25, 2012 @ 17:32:22 Author: andrea Revision: 147556
archrelease: copy trunk to testing-any Added: oxygen-icons/repos/testing-any/ oxygen-icons/repos/testing-any/PKGBUILD (from rev 147555, oxygen-icons/trunk/PKGBUILD) ----------+ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) Copied: oxygen-icons/repos/testing-any/PKGBUILD (from rev 147555, oxygen-icons/trunk/PKGBUILD) =================================================================== --- testing-any/PKGBUILD (rev 0) +++ testing-any/PKGBUILD 2012-01-25 22:32:22 UTC (rev 147556) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Andrea Scarpino <and...@archlinux.org> +# Contributor: Pierre Schmitz <pie...@archlinux.de> + +pkgbase=oxygen-icons +pkgname=('oxygen-icons' + 'oxygen-icons-svg') +pkgver=4.8.0 +pkgrel=1 +pkgdesc="The Oxygen Icon Theme" +arch=('any') +url='http://www.oxygen-icons.org/' +license=('LGPL') +makedepends=('cmake' 'automoc4') +source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('cd893bb4060957e4ceff39c46e01cec82746163e') + +build() { + cd $srcdir + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package_oxygen-icons() { + cd $srcdir/build + make DESTDIR=$pkgdir install +} + +package_oxygen-icons-svg() { + pkgdesc="The Oxygen Icon Theme (Scalable Vector Graphics)" + cd $srcdir/${pkgbase}-${pkgver} + find scalable -type f ! -name '*.sh' -exec \ + install -D -m644 "{}" "${pkgdir}/usr/share/icons/oxygen/{}" \; +}