wok annotate speex/receipt @ rev 23823

created recipes for qt5 packages
author Hans-G?nter Theisgen
date Thu May 28 10:56:20 2020 +0100 (2020-05-28)
parents 0b9152969608
children 5d79829fa876
rev   line source
pascal@1179 1 # SliTaz package receipt.
pascal@1179 2
pascal@1179 3 PACKAGE="speex"
Hans-G?nter@21946 4 VERSION="1.2.0"
pascal@1179 5 CATEGORY="multimedia"
Hans-G?nter@21946 6 SHORT_DESC="Low bandwidth voice codec."
pascal@1179 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15593 8 LICENSE="BSD"
Hans-G?nter@21946 9 WEB_SITE="https://www.speex.org/"
Hans-G?nter@21946 10
pascal@1179 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20670 12 WGET_URL="https://ftp.osuosl.org/pub/xiph/releases/$PACKAGE/$TARBALL"
Hans-G?nter@21946 13
pascal@20670 14 OBSOLATED_BY="opus"
pankso@10366 15 DEPENDS="libogg"
pankso@10366 16 BUILD_DEPENDS="libogg-dev"
pankso@10366 17
Hans-G?nter@21946 18 HOST_ARCH="i486 arm"
Hans-G?nter@21946 19
pascal@1179 20 # Rules to configure and make the package.
pascal@1179 21 compile_rules()
pascal@1179 22 {
pankso@10366 23 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@21946 24 make &&
Hans-G?nter@21946 25 make install
pascal@1179 26 }
pascal@1179 27
pascal@1179 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1179 29 genpkg_rules()
pascal@1179 30 {
pascal@1179 31 mkdir -p $fs/usr/lib
Hans-G?nter@21946 32
Hans-G?nter@21946 33 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21946 34 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@1179 35 }