wok annotate libgdiplus/receipt @ rev 3513

updale modules.list: vfat,ohci_hcd,fat,msdos,nls_utf8 in kernel now
author Rohit Joshi <jozee@slitaz.org>
date Fri Jun 19 23:51:29 2009 +0000 (2009-06-19)
parents 7ef9f36a70aa
children eda0473a575d
rev   line source
rcx@3219 1 # SliTaz package receipt.
rcx@3219 2
rcx@3219 3 PACKAGE="libgdiplus"
rcx@3219 4 VERSION="2.4"
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@3219 8 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"
rcx@3219 9 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"
rcx@3219 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
rcx@3219 11 WEB_SITE="http://www.mono-project.com/Libgdiplus"
rcx@3219 12 WGET_URL="ftp://ftp.novell.com/pub/mono/sources/$PACKAGE/$TARBALL"
rcx@3219 13
rcx@3219 14 # Build documentation at http://mono-project.com/Compiling_Mono
rcx@3219 15 # and http://mono-project.com/Release_Notes_Mono_2.4#Installing_Mono_2.4
rcx@3219 16
rcx@3219 17 # Rules to configure and make the package.
rcx@3219 18 compile_rules()
rcx@3219 19 {
rcx@3219 20 cd $src
rcx@3219 21 ./configure \
rcx@3219 22 --prefix=/usr \
rcx@3219 23 --infodir=/usr/share/info \
rcx@3219 24 --mandir=/usr/share/man \
rcx@3219 25 $CONFIGURE_ARGS &&
rcx@3219 26 make &&
rcx@3219 27 make DESTDIR=$PWD/_pkg install
rcx@3219 28 }
rcx@3219 29
rcx@3219 30 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3219 31 genpkg_rules()
rcx@3219 32 {
rcx@3219 33 mkdir -p $fs/usr/lib
rcx@3219 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
rcx@3219 35 }