wok view libvorbis/receipt @ rev 21756

logsurfer, mypaint: update url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 22 21:11:47 2019 +0200 (2019-06-22)
parents a78610b2eb47
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="libvorbis"
4 VERSION="1.3.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Vorbis base library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://www.xiph.org/vorbis/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://downloads.xiph.org/releases/vorbis/$TARBALL"
14 DEPENDS="libogg"
15 BUILD_DEPENDS="libogg-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 $CONFIGURE_ARGS &&
24 make -j 1 &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
33 # The libvorbisenc files should go in libvorbis-enc
34 #cp -a $install/usr/lib/libvorbis.so* $fs/usr/lib
35 #cp -a $install/usr/lib/libvorbisfile.so* $fs/usr/lib
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 }