wok-6.x diff gavl/receipt @ rev 7418
nvidia: only use .unblocked_ioctl since 2.6.36
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Nov 28 12:56:09 2010 +0100 (2010-11-28) |
parents | |
children | 3d26097fbb20 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gavl/receipt Sun Nov 28 12:56:09 2010 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gavl" 1.7 +VERSION="1.1.1" 1.8 +CATEGORY="multimedia" 1.9 +MAINTAINER="jozee@slitaz.org" 1.10 +SHORT_DESC="A low level library, upon which multimedia APIs can be built." 1.11 +WEB_SITE="http://gmerlin.sourceforge.net/" 1.12 +DEPENDS="glibc-base" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WGET_URL="$SF_MIRROR/gmerlin/$TARBALL" 1.15 + 1.16 + 1.17 +# Rules to configure and make the package. 1.18 + 1.19 +compile_rules() { 1.20 + cd $src 1.21 + ./configure --prefix=/usr \ 1.22 + --without-doxygen \ 1.23 + --with-cpuflags=none \ 1.24 + $CONFIGURE_ARGS && 1.25 + make && 1.26 + make DESTDIR=$PWD/_pkg install 1.27 +} 1.28 + 1.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.30 +genpkg_rules() 1.31 +{ 1.32 + mkdir -p $fs/usr/lib 1.33 + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ 1.34 +}