wok view obby/receipt @ rev 11088

Up: dbus to 1.4.16.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 17 02:38:10 2011 +0000 (2011-10-17)
parents 8fd90285da5e
children 600aaedb561d
line source
1 # SliTaz package receipt.
3 PACKAGE="obby"
4 VERSION="0.4.7"
5 CATEGORY="network"
6 SHORT_DESC="Realtime collaborative text-editing functionality."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://gobby.0x539.de/trac/"
10 WGET_URL="http://releases.0x539.de/obby/$TARBALL"
11 TAGS="collaboration text-editor"
13 DEPENDS="gnutls libgpg-error libgcrypt net6 libsigc++ zlib gcc-lib-base libtasn1"
14 BUILD_DEPENDS="$DEPENDS gnutls-dev libgpg-error-dev libgcrypt-dev net6-dev \
15 libsigc++-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 }