wok annotate libgdiplus/receipt @ rev 10245

Up: glib to 2.28.6.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 01:51:01 2011 +0000 (2011-05-21)
parents 4f6780000ea4
children e0c8ce918b56
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@4052 10 giflib jpeg libpng tiff pixman libexif zlib util-linux-ng-uuid"
rcx@3949 11 BUILD_DEPENDS="slitaz-toolchain m4 bison pkg-config glib-dev xorg-dev \
rcx@3949 12 cairo-dev expat-dev freetype-dev fontconfig-dev giflib giflib-dev jpeg-dev \
slaxemulator@6950 13 libpng-dev tiff-dev pixman-dev libexif-dev libexif zlib-dev util-linux-ng-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 \
rcx@3219 30 $CONFIGURE_ARGS &&
rcx@3219 31 make &&
rcx@3219 32 make DESTDIR=$PWD/_pkg install
rcx@3219 33 }
rcx@3219 34
rcx@3219 35 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3219 36 genpkg_rules()
rcx@3219 37 {
rcx@3219 38 mkdir -p $fs/usr/lib
rcx@3219 39 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
rcx@3219 40 }