# SliTaz package receipt.

PACKAGE="polkit-qt"
VERSION="0.99.0"
CATEGORY="system-tools"
SHORT_DESC="Library that allows to access PolicyKit API with a nice Qt-style API"
MAINTAINER="pankso@slitaz.org"
DEPENDS="polkit"
BUILD_DEPENDS="$DEPENDS qmake Qt4-dev automoc4 polkit-dev"
TARBALL="$PACKAGE-1-$VERSION.tar.bz2"
WEB_SITE="http://www.kde.org/"
WGET_URL="ftp://ftp.kde.org/pub/kde/stable/apps/KDE4.x/admin/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
	mkdir -p $src/build
	cd $src/build
	cmake \
		-DCMAKE_BUILD_TYPE=Release \
		-DCMAKE_INSTALL_PREFIX=/usr .. &&
	make && make install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/lib
	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
}