From c4567f72cc663cd0c2c7f04e904bedbb2222a734 Mon Sep 17 00:00:00 2001 From: Tuukka Pasanen Date: Tue, 31 Dec 2013 16:15:48 +0200 Subject: [PATCH] new package libcdio: depency of xine-lib 1.2 --- index.html | 4 ++++ src/libcdio.mk | 23 +++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 src/libcdio.mk diff --git a/index.html b/index.html index ed702bf1..ff2e03e8 100644 --- a/index.html +++ b/index.html @@ -1534,6 +1534,10 @@ local-pkg-list: $(LOCAL_PKG_LIST) libbluray libbluray + + libcdio + Libcdio + libcroco Libcroco diff --git a/src/libcdio.mk b/src/libcdio.mk new file mode 100644 index 00000000..845f5ab6 --- /dev/null +++ b/src/libcdio.mk @@ -0,0 +1,23 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := libcdio +$(PKG)_IGNORE := +$(PKG)_VERSION := 0.92 +$(PKG)_CHECKSUM := 37f0b746181c9a3c2ff14e21147885addf357b5f +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2 +$(PKG)_URL := http://ftp.gnu.org/gnu/libcdio/$(PKG)-$($(PKG)_VERSION).tar.bz2 +$(PKG)_DEPS := gcc + +define $(PKG)_UPDATE + echo $($(PKG)_VERSION) +endef + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --disable-shared \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1)' -j 1 install +endef