wok-6.x annotate mono/receipt @ rev 10893
ImageMagick: enable HDRI mode
author | Alexander Medvedev <devl547@gmail.com> |
---|---|
date | Thu Jul 07 09:27:49 2011 +0000 (2011-07-07) |
parents | 4308dc535830 |
children | 1c9a0f9f7ad6 |
rev | line source |
---|---|
rcx@3231 | 1 # SliTaz package receipt. |
rcx@3231 | 2 |
rcx@3231 | 3 PACKAGE="mono" |
slaxemulator@10194 | 4 VERSION="2.10.2" |
rcx@3231 | 5 CATEGORY="development" |
rcx@3231 | 6 SHORT_DESC="Cross-platform, open source .NET development framework" |
rcx@3231 | 7 MAINTAINER="rcx@zoominternet.net" |
rcx@3231 | 8 DEPENDS="glib glibc-base zlib libgdiplus" |
slaxemulator@9439 | 9 BUILD_DEPENDS="tar bzip2 m4 pkg-config bison gawk \ |
pascal@8910 | 10 gettext glib-dev perl" |
rcx@3231 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
rcx@3231 | 12 WEB_SITE="http://www.mono-project.com/" |
rcx@3231 | 13 WGET_URL="ftp://ftp.novell.com/pub/mono/sources/$PACKAGE/$TARBALL" |
rcx@3231 | 14 |
rcx@3231 | 15 # Build documentation at http://mono-project.com/Compiling_Mono |
rcx@3231 | 16 # and http://mono-project.com/Release_Notes_Mono_2.4#Installing_Mono_2.4 |
rcx@3231 | 17 |
rcx@3231 | 18 # Rules to configure and make the package. |
rcx@3231 | 19 compile_rules() |
rcx@3231 | 20 { |
rcx@3231 | 21 cd $src |
rcx@3231 | 22 ./configure \ |
rcx@3949 | 23 --sysconfdir=/etc \ |
rcx@3231 | 24 $CONFIGURE_ARGS && |
slaxemulator@10194 | 25 make -j 1 && make install |
rcx@3231 | 26 } |
rcx@3231 | 27 |
rcx@3231 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3231 | 29 genpkg_rules() |
rcx@3231 | 30 { |
rcx@3231 | 31 mkdir -p $fs/usr/lib |
rcx@3231 | 32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
rcx@3231 | 33 cp -a $_pkg/usr/lib/mono $fs/usr/lib |
rcx@3231 | 34 cp -a $_pkg/usr/bin $fs/usr |
rcx@3949 | 35 cp -a $_pkg/etc $fs |
rcx@3231 | 36 chmod +x $fs/usr/bin/* |
rcx@3231 | 37 } |