wok view libmpeg2/receipt @ rev 3013

Add xorg-libXxf86vm (library)
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 11 22:30:23 2009 +0200 (2009-05-11)
parents 968e7dabe578
children 6b2db4df3383
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 libiconv xorg-libICE xor-libSM xorg-libX11 xorg-libXau \
9 xorg-libXdmcp xorg-libXext xorg-libXv"
10 BUILD_DEPENDS="glibc-base libiconv libiconv-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=$PWD/_pkg 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 }