wok view libvpx/receipt @ rev 14257

syslinux/iso2exe: check kernel version, add floppy bootstrap stub
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 28 11:51:42 2013 +0100 (2013-03-28)
parents e6cfdde3ac10
children 8d6f480bf664
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 WEB_SITE="http://www.webmproject.org/"
9 TARBALL="$PACKAGE-v$VERSION.tar.bz2"
10 WGET_URL="http://webm.googlecode.com/files/$TARBALL"
12 DEPENDS="glibc-base"
13 BUILD_DEPENDS="yasm coreutils-file-format"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --enable-vp8 \
20 --enable-runtime-cpu-detect \
21 --enable-postproc \
22 --enable-shared \
23 --enable-pic \
24 --disable-install-docs \
25 --disable-install-srcs &&
26 make && make DIST_DIR=$DESTDIR/usr install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }