# HG changeset patch # User Christophe Lincoln # Date 1392242035 -3600 # Node ID c7df6249e093f2754cb8ed8017da5920a24da730 # Parent c35d5f7526ad85d8e8b7e2b210fc388042b91d4e libnl: remove devel files (save space on ISO) diff -r c35d5f7526ad -r c7df6249e093 libnl-dev/receipt --- a/libnl-dev/receipt Wed Feb 12 22:53:32 2014 +0100 +++ b/libnl-dev/receipt Wed Feb 12 22:53:55 2014 +0100 @@ -13,7 +13,10 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr + mkdir -p $fs/usr/lib cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/libnl $fs/usr/lib + find $fs/usr/lib -type f -name "*.so" -exec rm -f {} \; } diff -r c35d5f7526ad -r c7df6249e093 libnl/receipt --- a/libnl/receipt Wed Feb 12 22:53:32 2014 +0100 +++ b/libnl/receipt Wed Feb 12 22:53:55 2014 +0100 @@ -22,6 +22,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/libnl $fs/usr/lib + find $fs/usr/lib -type f -name "*.a*" -exec rm -f {} \; }