comparison src/gst-plugins-good.mk @ 798:0292c7229519

new packages: liboil, libshout, gstreamer, gst-plugins-base and gst-plugins-good
author Mark Brand <mabrand@mabrand.nl>
date Sun, 21 Feb 2010 21:52:21 +0100
parents
children 3eba8075e121
comparison
equal deleted inserted replaced
797:57d8eeb68a05 798:0292c7229519
1 # This file is part of mingw-cross-env.
2 # See doc/index.html for further information.
3
4 # gst-plugins-good
5 PKG := gst-plugins-good
6 $(PKG)_IGNORE :=
7 $(PKG)_VERSION := 0.10.18
8 $(PKG)_CHECKSUM := 74a463ed6e300598bd14f3f8915f2765f5420bd5
9 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
10 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
11 $(PKG)_WEBSITE := http://gstreamer.freedesktop.org
12 $(PKG)_URL := http://gstreamer.freedesktop.org/src/$(PKG)/$($(PKG)_FILE)
13 $(PKG)_DEPS := gcc glib libxml2 gstreamer liboil libshout cairo directx flac gtk jpeg libpng speex taglib
14
15 define $(PKG)_UPDATE
16 echo "Update not implemented"
17 endef
18
19 define $(PKG)_BUILD
20 cd '$(1)' && ./configure \
21 --host='$(TARGET)' \
22 --prefix='$(PREFIX)/$(TARGET)' \
23 --disable-shared \
24 --disable-debug \
25 --disable-check \
26 --disable-tests \
27 --disable-examples \
28 --mandir='$(1)/sink' \
29 --docdir='$(1)/sink' \
30 --with-html-dir='$(1)/sink'
31 $(MAKE) -C '$(1)' -j '$(JOBS)' install
32 endef