changeset 812:cc5accf80b3b

new package: fribidi
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 24 Feb 2010 15:01:38 +0100
parents f5a5648dfbd7
children 46b1eb76c87d
files doc/index.html src/fribidi.mk
diffstat 2 files changed, 32 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/doc/index.html	Wed Feb 24 14:54:35 2010 +0100
+++ b/doc/index.html	Wed Feb 24 15:01:38 2010 +0100
@@ -423,7 +423,7 @@
         <p>
         Some new packages are supported:
         liboil, libshout, gstreamer, gst-plugins-base, gst-plugins-good,
-        libpaper and libcroco.
+        libpaper, libcroco and fribidi.
         </p>
     </dd>
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/fribidi.mk	Wed Feb 24 15:01:38 2010 +0100
@@ -0,0 +1,31 @@
+# This file is part of mingw-cross-env.
+# See doc/index.html for further information.
+
+# FriBidi
+PKG             := fribidi
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 0.19.2
+$(PKG)_CHECKSUM := 3889469d96dbca3d8522231672e14cca77de4d5e
+$(PKG)_SUBDIR   := $(PKG)-$($(PKG)_VERSION)
+$(PKG)_FILE     := $($(PKG)_SUBDIR).tar.gz
+$(PKG)_WEBSITE  := http://fribidi.org/
+$(PKG)_URL      := http://fribidi.org/download/$($(PKG)_FILE)
+$(PKG)_DEPS     := gcc glib
+
+define $(PKG)_UPDATE
+    wget -q -O- 'http://fribidi.org/download/?C=M;O=D' | \
+    $(SED) -n 's,.*<a href="fribidi-\([0-9][^"]*\)\.tar.*,\1,p' | \
+    head -1
+endef
+
+define $(PKG)_BUILD
+    cd '$(1)' && ./configure \
+        --host='$(TARGET)' \
+        --disable-shared \
+        --prefix='$(PREFIX)/$(TARGET)' \
+        --disable-debug \
+        --disable-deprecated \
+        --enable-charsets \
+        --with-glib
+    $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= dist_man_MANS=
+endef