wok view obby/receipt @ rev 22557

updated bluez-dev again (4.101 -> 5.52)
author Hans-G?nter Theisgen
date Sat Jan 04 16:27:44 2020 +0100 (2020-01-04)
parents fe0c19fa259e
children 241fb98cab1c
line source
1 # SliTaz package receipt.
3 PACKAGE="obby"
4 VERSION="0.4.8"
5 CATEGORY="network"
6 TAGS="collaboration text"
7 SHORT_DESC="Realtime collaborative text-editing functionality."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://gobby.github.io/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://releases.0x539.de/obby/$TARBALL"
15 DEPENDS="gcc-lib-base gnutls libgcrypt libgpg-error libsigc++ libtasn1 \
16 net6 zlib"
17 BUILD_DEPENDS="$DEPENDS gnutls-dev libgcrypt-dev libgnutls libgpg-error-dev \
18 libsigc++-dev net6-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }