wok diff leptonica/receipt @ rev 17375
Add linux64-aufs (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Nov 21 15:45:32 2014 +0100 (2014-11-21) |
parents | |
children | 8417cbe6fdae |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/leptonica/receipt Fri Nov 21 15:45:32 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="leptonica" 1.7 +VERSION="1.70" 1.8 +CATEGORY="graphics" 1.9 +SHORT_DESC="Software for image processing and image analysis applications." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="MIT" 1.12 +WEB_SITE="http://www.leptonica.org/" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WGET_URL="http://www.leptonica.org/source/$TARBALL" 1.15 + 1.16 +DEPENDS="giflib jpeg libpng tiff xorg-libX11 xorg-libXau xorg-libXdmcp libxcb" 1.17 +BUILD_DEPENDS="giflib-dev jpeg-dev libpng-dev tiff-dev xorg-dev" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + ./autogen.sh 1.23 + ./configure \ 1.24 + --prefix=/usr \ 1.25 + $CONFIGURE_ARGS && 1.26 + make && make install 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/lib 1.33 + cp -a $install/usr/bin $fs/usr 1.34 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.35 +}