wok view rubyripper/stuff/rubyripper @ rev 9730

aufs: add TARBALL need to avoid cloning each time. It's tar.bz2 since cook will compress it in this format but if *.tar.lzma exit it will be used by both cook and tazwok
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 09 15:38:20 2011 +0200 (2011-05-09)
parents
children
line source
1 #!/bin/sh
2 # Rubyripper launcher
3 # (C) 2007-2010 SliTaz - GNU General Public License v3.
5 RUBY_GTK2_PC=$(/usr/bin/pkg-config --exists ruby-gtk2)
6 if [ $RUBY_GTK2_PC ]; then
7 /usr/bin/rrip_gui
8 else
9 /usr/bin/xterm -T "Rubyripper CLI" -e /usr/bin/rrip_cli
10 fi