wok view obby/receipt @ rev 20413

*l2tp*: add doc (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 02 11:37:36 2018 +0200 (2018-08-02)
parents 600aaedb561d
children fe0c19fa259e
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://gobby.0x539.de/trac/"
11 WGET_URL="http://releases.0x539.de/obby/$TARBALL"
12 TAGS="collaboration text"
14 DEPENDS="gnutls libgpg-error libgcrypt net6 libsigc++ zlib gcc-lib-base libtasn1"
15 BUILD_DEPENDS="$DEPENDS gnutls-dev libgpg-error-dev libgcrypt-dev net6-dev \
16 libsigc++-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }