wok view obby/receipt @ rev 5153

get-virtualbox: Fix build.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Mar 24 14:34:06 2010 +0100 (2010-03-24)
parents 5b44af8c1257
children a6957725023c
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 DEPENDS="gnutls libgpg-error libgcrypt net6 libsigc++ zlib gcc-lib-base libtasn1"
10 BUILD_DEPENDS="$DEPENDS gnutls-dev libgpg-error-dev libgcrypt-dev net6-dev"
11 WEB_SITE="http://gobby.0x539.de/trac/"
12 WGET_URL="http://releases.0x539.de/obby/$TARBALL"
13 TAGS="collaboration text-editor"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }