wok view libmpeg2/receipt @ rev 10879

Add: luasocket
author Liu Peng <rocky@slitaz.org>
date Fri Jun 24 09:26:42 2011 +0000 (2011-06-24)
parents e8024c01fc47
children b7319995b37e
line source
1 # SliTaz package receipt.
3 PACKAGE="libmpeg2"
4 VERSION="0.5.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="library for decoding MPEG-1 and MPEG-2 video streams"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="libsdl xorg-libICE xorg-libSM xorg-libX11 xorg-libXau \
9 xorg-libXdmcp xorg-libXext xorg-libXv"
10 BUILD_DEPENDS="glibc-base xorg-libXv-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://libmpeg2.sourceforge.net/"
13 WGET_URL="$WEB_SITE/files/$TARBALL"
14 TAGS="mpeg-1 mpeg-2 decode"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --enable-shared --disable-static &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib/
31 }