wok view obby/receipt @ rev 13112

amsn: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 27 10:11:54 2012 +0200 (2012-06-27)
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 }