wok diff lmms/receipt @ rev 18180

busybox: add /bin/ip
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 05 16:27:51 2015 +0200 (2015-07-05)
parents 408c87fa22ca
children 47e011a6bcee
line diff
     1.1 --- a/lmms/receipt	Sat Aug 10 17:48:05 2013 +0000
     1.2 +++ b/lmms/receipt	Sun Jul 05 16:27:51 2015 +0200
     1.3 @@ -20,7 +20,6 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 -	cd $src
     1.8  	sed -i 's|lib64|lib|g' cmake/modules/DetectMachine.cmake
     1.9  	cmake . -DCMAKE_INSTALL_PREFIX=/usr
    1.10  	make && make DESTDIR=$DESTDIR install
    1.11 @@ -29,7 +28,10 @@
    1.12  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.13  genpkg_rules()
    1.14  {
    1.15 -	mkdir -p $fs/usr
    1.16 -	cp -a $install/usr/* $fs/usr
    1.17 +	mkdir -p $fs/usr/share
    1.18 +
    1.19 +	cp -a $install/usr/bin $fs/usr
    1.20 +	cp -a $install/usr/lib $fs/usr
    1.21 +	cp -a $install/usr/share/lmms $fs/usr/share
    1.22 +	rm -rf $fs/usr/share/lmms/locale
    1.23  }
    1.24 -