wok annotate xorg-libXv/receipt @ rev 8317

Meta package ndiswrapper doesn't needed to download ndiswrapper since its not compiled here. Its download in ndiswrapper-driver receipt and also compiled there.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Feb 01 03:25:21 2011 +0000 (2011-02-01)
parents 285cc5e36cf7
children 9dba6776c6ad
rev   line source
pankso@290 1 # SliTaz package receipt.
pankso@290 2
pankso@290 3 PACKAGE="xorg-libXv"
slaxemulator@7022 4 VERSION="1.0.6"
pankso@290 5 CATEGORY="x-window"
pankso@290 6 SHORT_DESC="Xorg server module."
pankso@290 7 MAINTAINER="pankso@slitaz.org"
slaxemulator@8029 8 DEPENDS="xorg-libXext"
slaxemulator@8029 9 BUILD_DEPENDS="xorg-libXext-dev xorg-videoproto"
pankso@290 10 SOURCE="libXv"
gokhlayeh@6993 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@290 12 WEB_SITE="http://www.x.org/"
pankso@290 13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
pankso@290 14
pankso@290 15 # Rules to configure and make the package.
pankso@290 16 compile_rules()
pankso@290 17 {
pankso@290 18 cd $src
pankso@290 19 ./configure --prefix=/usr --sysconfdir=/etc \
pankso@290 20 --mandir=/usr/share/man --localstatedir=/var \
pankso@290 21 $CONFIGURE_ARGS
pankso@290 22 make
pankso@290 23 make DESTDIR=$PWD/_pkg install
pankso@290 24 }
pankso@290 25
pankso@290 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@290 27 genpkg_rules()
pankso@290 28 {
pankso@290 29 mkdir -p $fs/usr/lib
pankso@290 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@290 31 }