katana/packaging/archlinux/ariya-icons/PKGBUILD

39 lines
731 B
Text
Raw Normal View History

2015-06-13 16:08:35 +03:00
# $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')
2015-06-13 18:58:36 +03:00
pkgver() {
cd kde-baseapps
printf "4.16.0.%s" "$(git rev-parse --short HEAD)"
}
2015-06-13 16:08:35 +03:00
prepare() {
2015-06-13 18:58:36 +03:00
mkdir -p build
2015-06-13 16:08:35 +03:00
}
build() {
2015-06-13 18:58:36 +03:00
cd build
cmake ../ariya-icons \
-DCMAKE_BUILD_TYPE=RelWithDbgInfo \
-DKDE4_BUILD_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX=/usr
make
2015-06-13 16:08:35 +03:00
}
package() {
2015-06-13 18:58:36 +03:00
cd "${srcdir}/build"
make DESTDIR="${pkgdir}" install
2015-06-13 16:08:35 +03:00
}