wok view spandsp/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 7a2212bc32cd
children 535c806240cc
line source
1 # SliTaz package receipt.
3 PACKAGE="spandsp"
4 VERSION="0.0.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="library of DSP functions for telephony."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://web.archive.org/web/20190804211734/https://www.soft-switch.org/"
11 WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL"
13 DEPENDS="tiff zlib jpeg"
14 BUILD_DEPENDS="tiff-dev zlib-dev jpeg-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make -j1 &&
21 make -j1 install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }