# $Id: PKGBUILD 127710 2015-02-14 20:29:58Z jleclanche $
# Maintainer: Jerome Leclanche <jerome@leclan.ch>

pkgname=lxqt-common
pkgver=0.9.1
pkgrel=1
pkgdesc="Common data to run a LXQt session."
arch=("any")
url="http://lxqt.org"
license=("GPL2")
depends=("bash" "hicolor-icon-theme")
makedepends=("cmake" "liblxqt" "qt5-tools")
source=("http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz")
sha256sums=("6e572cb10a1619dcfd51bdd33802a71d4556a55ece0bc781c1cb41d972e5734d")


build() {
	mkdir -p build
	cd build
	cmake "$srcdir/$pkgname-$pkgver" \
		-DCMAKE_INSTALL_PREFIX=/usr
	make
}

package() {
	cd build
	make DESTDIR="$pkgdir" install
}
