wok view libvorbis/receipt @ rev 15924

ntp: avoid refection attacks
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 19 09:17:04 2014 +0000 (2014-02-19)
parents 55809d1fc91a
children ece91be34a06
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"
13 DEPENDS="libogg"
14 BUILD_DEPENDS="libogg-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $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 }