wok view libgdiplus/receipt @ rev 25608

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 20 09:05:42 2023 +0000 (10 months ago)
parents 7364ffdaaa60
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libgdiplus"
4 VERSION="6.0.5"
5 CATEGORY="development"
6 SHORT_DESC="Mono library providing a GDI+ compatible API on non-Windows operating systems."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="MIT"
9 WEB_SITE="https://www.mono-project.com/docs/gui/libgdiplus/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://download.mono-project.com/sources/$PACKAGE/$TARBALL"
14 DEPENDS="cairo expat fontconfig freetype giflib glib glibc-base
15 jpeg libexif libpng pixman tiff util-linux-uuid
16 xorg-libICE xorg-libSM xorg-libX11 xorg-libXau
17 xorg-libXdmcp xorg-libXrender zlib"
18 BUILD_DEPENDS="bison cairo-dev expat-dev fontconfig-dev
19 freetype-dev giflib giflib-dev glib-dev jpeg-dev
20 libexif libexif-dev libpng-dev libxml2-dev m4
21 pixman-dev pkg-config tiff-dev util-linux-uuid-dev xorg-dev
22 zlib-dev"
24 # Build documentation at http://mono-project.com/Compiling_Mono
25 # and http://mono-project.com/Release_Notes_Mono_2.4#Installing_Mono_2.4
27 # What is the latest version available today?
28 current_version()
29 {
30 wget -O - https://github.com/mono/libgdiplus/tags 2>/dev/null | \
31 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
32 }
34 # Rules to configure and make the package.
35 compile_rules()
36 {
37 ./configure \
38 --prefix=/usr \
39 --infodir=/usr/share/info \
40 --mandir=/usr/share/man \
41 --sysconfdir=/etc \
42 $CONFIGURE_ARGS &&
43 make &&
44 make install DESTDIR=$DESTDIR
45 }
47 # Rules to gen a SliTaz package suitable for Tazpkg.
48 genpkg_rules()
49 {
50 cook_copy_files *.so*
51 }