wok annotate spandsp/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents 7a2212bc32cd
children 535c806240cc
rev   line source
pascal@1178 1 # SliTaz package receipt.
pascal@1178 2
pascal@9043 3 PACKAGE="spandsp"
pascal@20107 4 VERSION="0.0.6"
pascal@9043 5 CATEGORY="system-tools"
pascal@9043 6 SHORT_DESC="library of DSP functions for telephony."
pascal@1178 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15096 8 LICENSE="LGPL2.1"
pascal@20107 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21824 10 WEB_SITE="https://web.archive.org/web/20190804211734/https://www.soft-switch.org/"
pascal@9043 11 WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL"
pascal@15096 12
pascal@9043 13 DEPENDS="tiff zlib jpeg"
pascal@15096 14 BUILD_DEPENDS="tiff-dev zlib-dev jpeg-dev"
pascal@1178 15
pascal@1178 16 # Rules to configure and make the package.
pascal@1178 17 compile_rules()
pascal@1178 18 {
gokhlayeh@11573 19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@9048 20 make -j1 &&
pascal@9048 21 make -j1 install
pascal@1178 22 }
pascal@1178 23
pascal@1178 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1178 25 genpkg_rules()
pascal@1178 26 {
pascal@9043 27 mkdir -p $fs/usr/lib
pascal@15096 28 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@1178 29 }