wok-6.x rev 15313
partclone: remove a wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Sep 27 16:30:34 2013 +0000 (2013-09-27) |
parents | 178ea3fcbac8 |
children | a38fd3f53d2d |
files | partclone/receipt ruby-gtk2/receipt |
line diff
1.1 --- a/partclone/receipt Fri Sep 27 15:47:37 2013 +0000 1.2 +++ b/partclone/receipt Fri Sep 27 16:30:34 2013 +0000 1.3 @@ -24,8 +24,8 @@ 1.4 --enable-ntfs \ 1.5 --enable-btrfs \ 1.6 --enable-hfsp \ 1.7 - --enable-ncursesw \ 1.8 - && make && make install 1.9 + --enable-ncursesw && 1.10 + make && make install 2>&1 | sed "s/8': No such/8': no such/" 1.11 } 1.12 1.13 # Rules to gen a SliTaz package suitable for Tazpkg.
2.1 --- a/ruby-gtk2/receipt Fri Sep 27 15:47:37 2013 +0000 2.2 +++ b/ruby-gtk2/receipt Fri Sep 27 16:30:34 2013 +0000 2.3 @@ -11,6 +11,7 @@ 2.4 CATEGORY="development" 2.5 SHORT_DESC="GTK+ bindings for Ruby." 2.6 MAINTAINER="ben@seawolfsanctuary.com" 2.7 +LICENSE="LGPL2.1" 2.8 SOURCE="ruby-gnome2-all" 2.9 TARBALL="$SOURCE-$VERSION.tar.gz" 2.10 WEB_SITE="http://ruby-gnome2.sourceforge.jp/" 2.11 @@ -25,6 +26,7 @@ 2.12 compile_rules() 2.13 { 2.14 cd $src 2.15 + sed -i 's|<glib/.*|<glib.h>|' glib2/ext/glib2/rbglib_*.c 2.16 2.17 # Select the parts to compile here: 2.18 for LIB in $SELECTED_LIBS; do 2.19 @@ -39,5 +41,5 @@ 2.20 genpkg_rules() 2.21 { 2.22 mkdir -p $fs/usr 2.23 - cp -a $_pkg/usr $fs/ 2.24 + cp -a $install/usr $fs/ 2.25 }