wok-current diff libgdiplus/receipt @ rev 3219
Add: libgdiplus
author | Matthew Sheets <rcx@zoominternet.net> |
---|---|
date | Thu May 28 15:27:31 2009 +0000 (2009-05-28) |
parents | |
children | 88767c8c53a3 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libgdiplus/receipt Thu May 28 15:27:31 2009 +0000 1.3 @@ -0,0 +1,37 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libgdiplus" 1.7 +VERSION="2.4" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Mono library providing a GDI+ compatible API on non-Windows operating systems" 1.10 +MAINTAINER="rcx@zoominternet.net" 1.11 +DEPENDS="glib glibc-base xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXrender cairo expat freetype fontconfig giflib jpeg libpng tiff pixman libexif zlib libuuid" 1.12 +BUILD_DEPENDS="slitaz-toolchain m4 bison pkg-config glib-dev xorg-dev cairo-dev expat-dev freetype-dev fontconfig-dev giflib-dev jpeg-dev libpng-dev tiff-dev pixman-dev libexif-dev libexif zlib-dev" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WEB_SITE="http://www.mono-project.com/Libgdiplus" 1.15 +WGET_URL="ftp://ftp.novell.com/pub/mono/sources/$PACKAGE/$TARBALL" 1.16 + 1.17 +# Build documentation at http://mono-project.com/Compiling_Mono 1.18 +# and http://mono-project.com/Release_Notes_Mono_2.4#Installing_Mono_2.4 1.19 + 1.20 +# Optional packages - libgdiplus libzlib 1.21 + 1.22 +# Rules to configure and make the package. 1.23 +compile_rules() 1.24 +{ 1.25 + cd $src 1.26 + ./configure \ 1.27 + --prefix=/usr \ 1.28 + --infodir=/usr/share/info \ 1.29 + --mandir=/usr/share/man \ 1.30 + $CONFIGURE_ARGS && 1.31 + make && 1.32 + make DESTDIR=$PWD/_pkg install 1.33 +} 1.34 + 1.35 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.36 +genpkg_rules() 1.37 +{ 1.38 + mkdir -p $fs/usr/lib 1.39 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.40 +}