From efeaa617960cb80b9ece365ad992d8ebc6600c24 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Sun, 13 Oct 2013 10:42:24 -0700 Subject: Add a52dec package Signed-off-by: Timothy Gu --- index.html | 4 ++++ src/a52dec.mk | 27 +++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 src/a52dec.mk diff --git a/index.html b/index.html index 16c00d2..b5e7c5d 100644 --- a/index.html +++ b/index.html @@ -1091,6 +1091,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)

+ + + + diff --git a/src/a52dec.mk b/src/a52dec.mk new file mode 100644 index 0000000..00dcebf --- /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,.*/\([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 -- cgit v0.12
a52deca52dec (aka. liba52)
agg Anti-Grain Geometry