wok-next view attica/receipt @ rev 16272

Up: wine, wine-rt (1.7.16). Fix: wine needs prelink at build-time
author Alexander Medvedev <devl547@gmail.com>
date Sat Apr 05 20:56:22 2014 +0000 (2014-04-05)
parents 76b72f1ad63c
children c3a368c0cddb
line source
1 # SliTaz package receipt.
3 PACKAGE="attica"
4 VERSION="0.4.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Qt library that implements the Open Collaboration Services API."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.kde.org/"
11 WGET_URL="ftp://ftp.kde.org/pub/kde/stable/attica/$TARBALL"
13 DEPENDS="libQtCore libQtNetwork"
14 BUILD_DEPENDS="cmake qmake Qt4-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 mkdir -p build && cd build
21 cmake \
22 -DCMAKE_INSTALL_PREFIX=/usr \
23 .. &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }