wok view mjpegtools/receipt @ rev 3511

change ohci_hcd for full hard disk install on usb disk
author Rohit Joshi <jozee@slitaz.org>
date Fri Jun 19 15:56:06 2009 +0000 (2009-06-19)
parents b64de0e6c436
children 9a775ce0eafd
line source
1 # SliTaz package receipt.
3 PACKAGE="mjpegtools"
4 VERSION="1.9.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="MPEG manipulation tools."
7 TAGS="mpeg mjpeg video"
8 DEPENDS="libdv expat gtk+ jpeg libsdl libsdl-gfx xorg-libX11 xorg-libXau \
9 xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes \
10 xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXdamage"
11 BUILD_DEPENDS="$DEPENDS libdv-dev libsdl-gfx-dev"
12 MAINTAINER="pankso@slitaz.org"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WEB_SITE="http://mjpeg.sourceforge.net/"
15 WGET_URL="$SF_MIRROR/mjpeg/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg 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 $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 }