wok diff attica/receipt @ rev 5765

Fix: bygfoot: move to /usr/games (!)
author Ben Arnold <ben@seawolfsanctuary.com>
date Mon Jul 05 13:04:02 2010 +0100 (2010-07-05)
parents
children 6a288aadb6ba
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/attica/receipt	Mon Jul 05 13:04:02 2010 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="attica"
     1.7 +VERSION="0.1.3"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Qt library that implements the Open Collaboration Services API."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="libQtCore libQtNetwork"
    1.12 +BUILD_DEPENDS="cmake qmake Qt4-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14 +WEB_SITE="http://www.kde.org/"
    1.15 +WGET_URL="ftp://ftp.kde.org/pub/kde/stable/attica/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	mkdir -p build && cd build
    1.22 +	cmake \
    1.23 +		-DCMAKE_INSTALL_PREFIX=/usr \
    1.24 +		.. &&
    1.25 +	make &&
    1.26 +	make DESTDIR=$src/_pkg install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr/lib
    1.33 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.34 +}