wok-next annotate speex/receipt @ rev 20095

Update/add packages needed for building MATE desktop:
Add: gnome-keyring3, gtkmm3, libappindicator-gtk[23], libfakekey, libgnome-keyring3, libindicator-gtk[23], libpeas.
Update: atkmm, cairomm, gcr, glibmm, gssdp, gupnp, icon-naming-utils, libcap-ng, libspectre, libwnck3, libxklavier, pangomm, perl-xml-sax.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Oct 28 16:45:22 2017 +0300 (2017-10-28)
parents 9278a60d6895
children 6d173c4b9591
rev   line source
al@19741 1 # SliTaz package receipt v2.
pascal@1179 2
pascal@1179 3 PACKAGE="speex"
al@19741 4 VERSION="1.2.0"
pascal@1179 5 CATEGORY="multimedia"
al@19741 6 SHORT_DESC="Low bandwith voice codec"
pascal@1179 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15593 8 LICENSE="BSD"
al@19741 9 WEB_SITE="https://www.speex.org/"
al@20017 10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/multimedia/speex.html"
pascal@19116 11 HOST_ARCH="i486 arm"
pascal@1179 12
al@19741 13 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20017 14 WGET_URL="https://downloads.xiph.org/releases/speex/$TARBALL"
al@19741 15
al@20017 16 BUILD_DEPENDS="speexdsp-dev libogg-dev"
al@20017 17 SPLIT="speex-bin speex-dev"
pankso@10366 18
al@20017 19 compile_rules() {
al@20017 20 ./configure \
al@20017 21 --disable-static \
al@20017 22 --docdir=/usr/share/doc/$PACKAGE-$VERSION \
al@20017 23 \
al@20017 24 --enable-binaries \
al@20017 25 $CONFIGURE_ARGS &&
al@20017 26 make &&
al@20017 27 make -j1 install
pascal@1179 28 }
pascal@1179 29
al@20017 30 genpkg_rules() {
al@19741 31 case $PACKAGE in
al@19741 32 speex)
al@20017 33 copy *.so*
al@20017 34 CAT="multimedia|library"
al@20017 35 ;;
al@20017 36 *-bin)
al@20017 37 copy bin/
al@20017 38 CAT="multimedia|encoder and decoder"
al@20017 39 DEPENDS="libogg speex speexdsp"
al@19741 40 ;;
al@19741 41 *-dev)
al@19741 42 copy @dev
al@19741 43 ;;
al@19741 44 esac
pascal@1179 45 }