wok view qutim/receipt @ rev 14129

esound: recook using existing upgraded audiofile-1 instead of absent old audiofile-0
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Feb 28 10:12:51 2013 +0000 (2013-02-28)
parents 21e11c3d31bb
children 23c3aed67cd9
line source
1 # SliTaz package receipt.
3 PACKAGE="qutim"
4 VERSION="0.3.1"
5 CATEGORY="network"
6 SHORT_DESC="Multiprotocol IM, written in qt4"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://qutim.org"
10 WGET_URL="$WEB_SITE/dwnl/40/$TARBALL"
12 DEPENDS="qt4 qca qt4-phonon xorg-libXss libjreen Qt4-qca-ossl"
13 BUILD_DEPENDS="Qt4-dev qmake cmake qca-dev xorg-libXss-dev dbus-dev libjreen-dev mesa-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 mkdir ../qutim-build && cd ../qutim-build
20 cmake ../$PACKAGE-$VERSION -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=release \
21 -DQUTIM_ENABLE_ALL_PLUGINS=on &&
22 make $MAKEOPTS &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib $fs/usr
32 cp -a $install/usr/share $fs/usr
33 }