wok-undigest rev 322

Fix: oxine receipt
author Alexander Medvedev <devl547@gmail.com>
date Sat Jun 11 12:39:02 2011 +0000 (2011-06-11)
parents ea709772ea74
children 591a1e0ea62c
files oxine/receipt
line diff
     1.1 --- a/oxine/receipt	Fri Jun 10 20:20:36 2011 +0200
     1.2 +++ b/oxine/receipt	Sat Jun 11 12:39:02 2011 +0000
     1.3 @@ -8,23 +8,21 @@
     1.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.5  WEB_SITE="http://oxine.sourceforge.net/"
     1.6  WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
     1.7 -BUILD_DEPENDS="libcdio-dev xine-lib-dev"
     1.8 -DEPENDS="libcdio xine-lib"
     1.9 +BUILD_DEPENDS="libcdio-dev xine-lib-dev curl-dev"
    1.10 +DEPENDS="libcdio xine-lib curl"
    1.11  
    1.12  # Rules to configure and make the package.
    1.13  compile_rules()
    1.14  {
    1.15  	cd $src
    1.16 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.17 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.18 -	make &&
    1.19 -	make DESTDIR=$PWD/_pkg install
    1.20 +	./configure $CONFIGURE_ARGS &&
    1.21 +	make &&	make install
    1.22  }
    1.23  
    1.24  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.25  genpkg_rules()
    1.26  {
    1.27  	mkdir -p $fs/usr/
    1.28 -	cp -a $src/_pkg/usr/bin $fs/usr
    1.29 -	cp -a $src/_pkg/usr/share/ $fs/usr
    1.30 +	cp -a $install/usr/bin $fs/usr
    1.31 +	cp -a $install/usr/share/ $fs/usr
    1.32  }