wok-next diff lmms/receipt @ rev 18518
connman-tools: add filesystem path
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Sun Oct 25 12:06:37 2015 -0400 (2015-10-25) |
parents | 408c87fa22ca |
children | dd145c435e4b |
line diff
1.1 --- a/lmms/receipt Sat Aug 10 17:48:05 2013 +0000 1.2 +++ b/lmms/receipt Sun Oct 25 12:06:37 2015 -0400 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 -