wok view ofono/receipt @ rev 15409

get-LibreOffice: fix gtk style and launch from menu shortcuts
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:16:39 2013 +0100 (2013-11-03)
parents 380ffe05937a
children 8ebec64e4191
line source
1 # SliTaz package receipt.
3 PACKAGE="ofono"
4 VERSION="1.12"
5 CATEGORY="network"
6 SHORT_DESC="Stack for mobile telephony (GSM/UMTS) applications."
7 MAINTAINER="slaxemulator@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://ofono.org"
10 WGET_URL="http://linux-kernel.uio.no/pub/linux/network/$PACKAGE/$TARBALL"
12 DEPENDS="dbus glib udev"
13 BUILD_DEPENDS="dbus-dev udev-dev glib-dev bluez-dev \
14 mobile-broadband-provider-info-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 # sysconfdir
33 mkdir -p $fs/etc
34 cp -a $_pkg/etc/* $fs/etc
35 # sbin
36 mkdir -p $fs/usr
37 cp -a $_pkg/usr/sbin $fs/usr
38 }