wok diff ffmpeg-svn/receipt @ rev 14005

virtualbox-ose: fix some typos
author ernia <monghitri@aruba.it>
date Sat Feb 16 21:14:52 2013 +0000 (2013-02-16)
parents 518a64ad039f
children 7bb096863642
line diff
     1.1 --- a/ffmpeg-svn/receipt	Tue Aug 07 13:38:47 2012 +0200
     1.2 +++ b/ffmpeg-svn/receipt	Sat Feb 16 21:14:52 2013 +0000
     1.3 @@ -26,8 +26,8 @@
     1.4  	./configure \
     1.5  		--prefix=/usr \
     1.6  		--enable-gpl \
     1.7 -		--arch=i486 \
     1.8 -		--cpu=i486 \
     1.9 +		--arch=$ARCH \
    1.10 +		--cpu=$ARCH \
    1.11  		--enable-shared \
    1.12  		--enable-small \
    1.13  		--enable-pthreads \
    1.14 @@ -36,15 +36,15 @@
    1.15  		--disable-mmx2 \
    1.16  		--disable-ssse3 &&
    1.17  	make &&
    1.18 -	make DESTDIR=$PWD/_pkg install
    1.19 +	make DESTDIR=$DESTDIR install
    1.20  }
    1.21  
    1.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.23  genpkg_rules()
    1.24  {
    1.25  	mkdir -p $fs/usr/lib
    1.26 -	cp -a $_pkg/usr/lib/*so* $fs/usr/lib
    1.27 -	cp -a $_pkg/usr/bin $fs/usr
    1.28 +	cp -a $install/usr/lib/*so* $fs/usr/lib
    1.29 +	cp -a $install/usr/bin $fs/usr
    1.30  	# ffplay with it SDL dep go in a splited package
    1.31  	rm $fs/usr/bin/ffplay
    1.32  }