wok-next diff lmms/receipt @ rev 19710
Up perl-html-tree (avoid dependency loop)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu May 11 04:40:46 2017 +0300 (2017-05-11) |
parents | 408c87fa22ca |
children | dd145c435e4b |
line diff
1.1 --- a/lmms/receipt Sat Aug 10 17:48:05 2013 +0000 1.2 +++ b/lmms/receipt Thu May 11 04:40:46 2017 +0300 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 -