katana/packaging/archlinux/ariya-icons/PKGBUILD
2015-06-13 16:08:35 +03:00

33 lines
681 B
Bash

# $Id$
# Maintainer: Ivailo Monev <xakepa10@gmail.com>
pkgname=ariya-icons
pkgver=4.16.0
pkgrel=1
pkgdesc="Ariya icon theme for use with Katana"
arch=('any')
url='http://fluxer.github.io/katana/'
license=('LGPL')
groups=('katana')
makedepends=('cmake')
install=${pkgname}.install
source=("git+https://github.com/fluxer/ariya-icons.git")
sha1sums=('SKIP')
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../ariya-icons \
-DCMAKE_BUILD_TYPE=RelWithDbgInfo \
-DKDE4_BUILD_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "${srcdir}"/build
make DESTDIR="${pkgdir}" install
}