wok-6.x annotate libgdiplus/receipt @ rev 15743
linux: update modules.list
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jan 02 15:04:05 2014 +0100 (2014-01-02) |
parents | 4904e3d374a9 |
children | 8417cbe6fdae |
rev | line source |
---|---|
rcx@3219 | 1 # SliTaz package receipt. |
rcx@3219 | 2 |
rcx@3219 | 3 PACKAGE="libgdiplus" |
slaxemulator@8892 | 4 VERSION="2.10" |
rcx@3219 | 5 CATEGORY="development" |
rcx@3219 | 6 SHORT_DESC="Mono library providing a GDI+ compatible API on non-Windows operating systems" |
rcx@3219 | 7 MAINTAINER="rcx@zoominternet.net" |
pascal@14714 | 8 LICENSE="MIT" |
pascal@14714 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@14714 | 10 WEB_SITE="http://www.mono-project.com/Libgdiplus" |
pascal@14714 | 11 WGET_URL="ftp://ftp.novell.com/pub/mono/sources/$PACKAGE/$TARBALL" |
pascal@14714 | 12 |
rcx@3949 | 13 DEPENDS="glib glibc-base xorg-libICE xorg-libSM xorg-libX11 xorg-libXau \ |
rcx@3949 | 14 xorg-libXdmcp xorg-libXrender cairo expat freetype fontconfig \ |
pankso@12481 | 15 giflib jpeg libpng tiff pixman libexif zlib util-linux-uuid" |
pascal@14717 | 16 BUILD_DEPENDS="m4 bison pkg-config glib-dev xorg-dev libxml2-dev \ |
rcx@3949 | 17 cairo-dev expat-dev freetype-dev fontconfig-dev giflib giflib-dev jpeg-dev \ |
pankso@12481 | 18 libpng-dev tiff-dev pixman-dev libexif-dev libexif zlib-dev util-linux-uuid-dev" |
rcx@3219 | 19 |
rcx@3219 | 20 # Build documentation at http://mono-project.com/Compiling_Mono |
rcx@3219 | 21 # and http://mono-project.com/Release_Notes_Mono_2.4#Installing_Mono_2.4 |
rcx@3219 | 22 |
rcx@3219 | 23 # Rules to configure and make the package. |
rcx@3219 | 24 compile_rules() |
rcx@3219 | 25 { |
rcx@3219 | 26 cd $src |
rcx@3219 | 27 ./configure \ |
rcx@3219 | 28 --prefix=/usr \ |
rcx@3219 | 29 --infodir=/usr/share/info \ |
rcx@3219 | 30 --mandir=/usr/share/man \ |
rcx@3949 | 31 --sysconfdir=/etc \ |
slaxemulator@12319 | 32 --with-cairo=system \ |
rcx@3219 | 33 $CONFIGURE_ARGS && |
rcx@3219 | 34 make && |
slaxemulator@12319 | 35 make DESTDIR=$DESTDIR install |
rcx@3219 | 36 } |
rcx@3219 | 37 |
rcx@3219 | 38 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3219 | 39 genpkg_rules() |
rcx@3219 | 40 { |
rcx@3219 | 41 mkdir -p $fs/usr/lib |
pascal@14714 | 42 cp -a $install/usr/lib/*.so* $fs/usr/lib |
rcx@3219 | 43 } |