wok-6.x diff fbida/receipt @ rev 17939
partimage: fix post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Apr 15 09:53:08 2015 +0200 (2015-04-15) |
parents | 408c87fa22ca |
children | f084d3ac96b8 |
line diff
1.1 --- a/fbida/receipt Sat Aug 10 17:48:05 2013 +0000 1.2 +++ b/fbida/receipt Wed Apr 15 09:53:08 2015 +0200 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="fbida" 1.7 -VERSION="2.07" 1.8 +VERSION="2.09" 1.9 CATEGORY="utilities" 1.10 SHORT_DESC="Image viewer for the framebuffer console" 1.11 MAINTAINER="devl547@gmail.com" 1.12 @@ -9,6 +9,7 @@ 1.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 WEB_SITE="http://linux.bytesex.org/fbida/" 1.15 WGET_URL="http://dl.bytesex.org/releases/$PACKAGE/$TARBALL" 1.16 +HOST_ARCH="i486 arm" 1.17 1.18 DEPENDS="libpng giflib tiff jpeg ttf-bitstream-vera libexif zlib \ 1.19 libcurl freetype fontconfig" 1.20 @@ -17,14 +18,14 @@ 1.21 # Rules to configure and make the package. 1.22 compile_rules() 1.23 { 1.24 - cd $src 1.25 - make -j2 && make DESTDIR=$DESTDIR install 1.26 + make 1.27 } 1.28 1.29 # Rules to gen a SliTaz package suitable for Tazpkg. 1.30 genpkg_rules() 1.31 { 1.32 - mkdir -p $fs/usr 1.33 - cp -a $install/usr/local/bin $fs/usr 1.34 + mkdir -p $fs/usr/bin 1.35 + for tool in fbi fbgs exiftran; do 1.36 + cp -a ${src}/${tool} $fs/usr/bin 1.37 + done 1.38 } 1.39 -