wok-6.x annotate libgdiplus/receipt @ rev 20684
Update some WEB_SITE
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Jan 27 21:28:24 2019 +0100 (2019-01-27) |
parents | af8a8f177c6c |
children | 75a55b2490c8 |
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@20669 | 10 WEB_SITE="https://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 ./configure \ |
rcx@3219 | 27 --prefix=/usr \ |
rcx@3219 | 28 --infodir=/usr/share/info \ |
rcx@3219 | 29 --mandir=/usr/share/man \ |
rcx@3949 | 30 --sysconfdir=/etc \ |
slaxemulator@12319 | 31 --with-cairo=system \ |
rcx@3219 | 32 $CONFIGURE_ARGS && |
rcx@3219 | 33 make && |
slaxemulator@12319 | 34 make DESTDIR=$DESTDIR install |
rcx@3219 | 35 } |
rcx@3219 | 36 |
rcx@3219 | 37 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3219 | 38 genpkg_rules() |
rcx@3219 | 39 { |
rcx@3219 | 40 mkdir -p $fs/usr/lib |
pascal@14714 | 41 cp -a $install/usr/lib/*.so* $fs/usr/lib |
psychomaniak@18352 | 42 } |