# HG changeset patch # User Christopher Rogers # Date 1306012959 0 # Node ID 277f0ebcf4df23705782cbfd94799a22b8750b74 # Parent a1076cb2b3367d61843773fa41153a913a98c5ae tilda: Add $CONFIGURE_ARGS. diff -r a1076cb2b336 -r 277f0ebcf4df tilda/receipt --- a/tilda/receipt Sat May 21 21:19:16 2011 +0000 +++ b/tilda/receipt Sat May 21 21:22:39 2011 +0000 @@ -17,7 +17,8 @@ compile_rules() { cd $src - ./configure && make && make install + ./configure $CONFIGURE_ARGS && + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -26,7 +27,5 @@ mkdir -p $fs/usr/share/applications/ cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/share/pixmaps $fs/usr/share - cp -a $_pkg/usr/share/tilda.glade $fs/usr/share - # Apply modified .desktop file to suit SliTaz. - cp -a stuff/tilda.desktop $fs/usr/share/applications/ + cp -a $_pkg/usr/share/tilda.glade $fs/usr/share }