summaryrefslogtreecommitdiffstats
path: root/src/a52dec.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/a52dec.mk')
-rw-r--r--src/a52dec.mk27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/a52dec.mk b/src/a52dec.mk
new file mode 100644
index 0000000..7f72ee4
--- /dev/null
+++ b/src/a52dec.mk
@@ -0,0 +1,27 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := a52dec
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 0.7.4
+$(PKG)_CHECKSUM := 79b33bd8d89dad7436f85b9154ad35667aa37321
+$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
+$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL := http://liba52.sourceforge.net/files/$(PKG)-$($(PKG)_VERSION).tar.gz
+$(PKG)_DEPS := gcc
+
+define $(PKG)_UPDATE
+ $(WGET) -q -O- 'http://liba52.sourceforge.net/downloads.html' | \
+ $(SED) -n 's,.*files/a52dec-\([0-9][^"]*\)\.tar.*,\1,p' | \
+ head -1
+endef
+
+define $(PKG)_BUILD
+ cd '$(1)' && autoreconf -fi # The autotools files came with a52dec is _ancient_
+ cd '$(1)' && ./configure \
+ --host='$(TARGET)' \
+ --disable-shared \
+ --prefix='$(PREFIX)/$(TARGET)'
+ $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+ $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+endef