wok view obby/receipt @ rev 2710

ffmpeg mktemp patch fails so cp configure
author Rohit Joshi <jozee@slitaz.org>
date Wed Apr 22 19:00:20 2009 +0000 (2009-04-22)
parents 4482e0fab13a
children 6ec17b55b59a
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"
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"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }