wok view sipsak/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 45e561e5af9b
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="sipsak"
4 VERSION="0.9.7"
5 CATEGORY="network"
6 SHORT_DESC="SIP swiss army knife."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/nils-ohlmeier/sipsak/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}archive/$VERSION.tar.gz"
14 DEPENDS="gnutls libcrypto zlib"
15 BUILD_DEPENDS="libtool libcrypto libcrypto-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 autoreconf --install &&
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }