wok view soprano/receipt @ rev 15995

freetype: add to ARM arch
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 02 15:43:44 2014 +0100 (2014-03-02)
parents 7896f0694ef6
children e919c5a2742d
line source
1 # SliTaz package receipt.
3 PACKAGE="soprano"
4 VERSION="2.8.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Soprano is the Qt/C++ RDF framework"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://soprano.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="libQtCore libQtNetwork raptor libiodbc"
14 BUILD_DEPENDS="cmake qmake Qt4-dev raptor-dev libiodbc-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir -p build && cd build
20 cmake \
21 -DCMAKE_INSTALL_PREFIX=/usr \
22 .. &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 cp -a $install/usr/lib/soprano $fs/usr/lib
33 cp -a $install/usr/share $fs/usr
34 }