wok view libvpx/receipt @ rev 17047

Add tcpd (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 20 12:19:17 2014 +0200 (2014-08-20)
parents 6d82665228b2
children bbf6553c03a2
line source
1 # SliTaz package receipt.
3 PACKAGE="libvpx"
4 VERSION="1.1.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="The VP8 Codec SDK"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="http://www.webmproject.org/"
10 TARBALL="$PACKAGE-v$VERSION.tar.bz2"
11 WGET_URL="http://webm.googlecode.com/files/$TARBALL"
13 DEPENDS="glibc-base"
14 BUILD_DEPENDS="yasm coreutils-file-format"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --enable-vp8 \
21 --enable-runtime-cpu-detect \
22 --enable-postproc \
23 --enable-shared \
24 --enable-pic \
25 --disable-install-docs \
26 --disable-install-srcs &&
27 make && make DIST_DIR=$DESTDIR/usr install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }