wok-current view libsdl-image/receipt @ rev 20272
Up usbip (3.16.55)
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sun Mar 18 16:42:58 2018 +0100 (2018-03-18) | 
| parents | 6eff489aa802 | 
| children | 087c88e4ce10 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="libsdl-image"
     4 SOURCE="SDL_image"
     5 VERSION="1.2.10"
     6 CATEGORY="development"
     7 SHORT_DESC="An image file loading library."
     8 MAINTAINER="chadi.elahmad@gmail.com"
     9 LICENSE="LGPL2.1"
    10 TARBALL="$SOURCE-$VERSION.tar.gz"
    11 WEB_SITE="http://www.libsdl.org/projects/SDL_image/"
    12 WGET_URL="http://www.libsdl.org/projects/SDL_image/release/$TARBALL"
    13 HOST_ARCH="i486 arm"
    15 DEPENDS="libsdl libpng jpeg zlib tiff"
    16 BUILD_DEPENDS="libsdl-dev libpng-dev jpeg-dev zlib-dev tiff-dev"
    18 # Rules to configure and make the package.
    19 compile_rules()
    20 {
    21 	./configure $CONFIGURE_ARGS \
    22 		LIBS=" -lz " &&
    23 	make && make install
    24 }
    26 # Rules to gen a SliTaz package suitable for Tazpkg.
    27 genpkg_rules()
    28 {
    29 	mkdir -p $fs/usr/lib
    30 	cp -a $install/usr/lib/*.so* $fs/usr/lib
    31 }