wok diff xosd/receipt @ rev 19892
Add postgresql-contrib (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Apr 06 09:52:53 2017 +0200 (2017-04-06) |
parents | 380ffe05937a |
children | 86790a278e70 |
line diff
1.1 --- a/xosd/receipt Sat Aug 10 17:00:38 2013 +0000 1.2 +++ b/xosd/receipt Thu Apr 06 09:52:53 2017 +0200 1.3 @@ -6,9 +6,10 @@ 1.4 SHORT_DESC="Light on screen display tool." 1.5 MAINTAINER="pankso@slitaz.org" 1.6 LICENSE="GPL2" 1.7 +WEB_SITE="http://sourceforge.net/projects/libxosd/" 1.8 + 1.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.10 -WEB_SITE="http://sourceforge.net/projects/libxosd/" 1.11 -WGET_URL="$SF_MIRROR/project/libxosd/libxosd/$PACKAGE-$VERSION/$TARBALL" 1.12 +WGET_URL="$SF_MIRROR/libxosd/$TARBALL" 1.13 1.14 DEPENDS="xorg-libX11" 1.15 BUILD_DEPENDS="xorg-dev" 1.16 @@ -16,16 +17,12 @@ 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 - cd $src 1.21 - ./configure $CONFIGURE_ARGS \ 1.22 - make && make install 1.23 + ./configure $CONFIGURE_ARGS 2>&1 | grep -v './configure' && 1.24 + make && make install 1.25 } 1.26 1.27 # Rules to gen a SliTaz package suitable for Tazpkg. 1.28 genpkg_rules() 1.29 { 1.30 - mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share 1.31 - cp -a $install/usr/bin/osd_cat $fs/usr/bin 1.32 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.33 - cp -a $install/usr/share/xosd $fs/usr/share 1.34 + cook_copy_files osd_cat *.so* *.png 1.35 }