wok view libvorbis/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents 1579e41f30b5
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="libvorbis"
4 VERSION="1.3.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="Vorbis base library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="other"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.xiph.org/"
11 WGET_URL="http://downloads.xiph.org/releases/vorbis/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="libogg"
15 BUILD_DEPENDS="libogg-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
31 # The libvorbisenc files should go in libvorbis-enc
32 #cp -a $install/usr/lib/libvorbis.so* $fs/usr/lib
33 #cp -a $install/usr/lib/libvorbisfile.so* $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }