wok-next annotate libgdiplus/receipt @ rev 13882
busybox-boot: add mount=, loopfs= & subroot= cmdline args (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jan 17 15:57:34 2013 +0100 (2013-01-17) |
parents | e0c8ce918b56 |
children | 4904e3d374a9 |
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" |
rcx@3949 | 8 DEPENDS="glib glibc-base xorg-libICE xorg-libSM xorg-libX11 xorg-libXau \ |
rcx@3949 | 9 xorg-libXdmcp xorg-libXrender cairo expat freetype fontconfig \ |
pankso@12481 | 10 giflib jpeg libpng tiff pixman libexif zlib util-linux-uuid" |
slaxemulator@12319 | 11 BUILD_DEPENDS="m4 bison pkg-config glib-dev xorg-dev \ |
rcx@3949 | 12 cairo-dev expat-dev freetype-dev fontconfig-dev giflib giflib-dev jpeg-dev \ |
pankso@12481 | 13 libpng-dev tiff-dev pixman-dev libexif-dev libexif zlib-dev util-linux-uuid-dev" |
rcx@3219 | 14 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
rcx@3219 | 15 WEB_SITE="http://www.mono-project.com/Libgdiplus" |
rcx@3219 | 16 WGET_URL="ftp://ftp.novell.com/pub/mono/sources/$PACKAGE/$TARBALL" |
rcx@3219 | 17 |
rcx@3219 | 18 # Build documentation at http://mono-project.com/Compiling_Mono |
rcx@3219 | 19 # and http://mono-project.com/Release_Notes_Mono_2.4#Installing_Mono_2.4 |
rcx@3219 | 20 |
rcx@3219 | 21 # Rules to configure and make the package. |
rcx@3219 | 22 compile_rules() |
rcx@3219 | 23 { |
rcx@3219 | 24 cd $src |
rcx@3219 | 25 ./configure \ |
rcx@3219 | 26 --prefix=/usr \ |
rcx@3219 | 27 --infodir=/usr/share/info \ |
rcx@3219 | 28 --mandir=/usr/share/man \ |
rcx@3949 | 29 --sysconfdir=/etc \ |
slaxemulator@12319 | 30 --with-cairo=system \ |
rcx@3219 | 31 $CONFIGURE_ARGS && |
rcx@3219 | 32 make && |
slaxemulator@12319 | 33 make DESTDIR=$DESTDIR install |
rcx@3219 | 34 } |
rcx@3219 | 35 |
rcx@3219 | 36 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3219 | 37 genpkg_rules() |
rcx@3219 | 38 { |
rcx@3219 | 39 mkdir -p $fs/usr/lib |
rcx@3219 | 40 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
rcx@3219 | 41 } |