# HG changeset patch # User Lucas Levrel # Date 1453233661 -3600 # Node ID 824e5ee3068cc9225954d9213bb77c017346836b # Parent 5c4ebc8de350dc7fa1479fa141d9082c4008b9ed Lighten megatools diff -r 5c4ebc8de350 -r 824e5ee3068c megatools/receipt --- a/megatools/receipt Mon Jan 18 22:23:53 2016 +0100 +++ b/megatools/receipt Tue Jan 19 21:01:01 2016 +0100 @@ -16,12 +16,14 @@ # Rules to configure and make the package. compile_rules() { - ./configure $CONFIGURE_ARGS && make && make install + ./configure $CONFIGURE_ARGS --disable-static \ + && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cp -a $install/* $fs - rm -r $fs/usr/share + # upstream info: lib is deprecated; remove .h .pc .la + rm -r $fs/usr/share $fs/usr/lib/pkgconfig $fs/usr/lib/*a $fs/usr/include }