summaryrefslogtreecommitdiffstats
path: root/src/libcdio.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcdio.mk')
-rw-r--r--src/libcdio.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/libcdio.mk b/src/libcdio.mk
new file mode 100644
index 0000000..57cc894
--- /dev/null
+++ b/src/libcdio.mk
@@ -0,0 +1,22 @@
+# 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 'TODO: Updates for package libcdio need to be written.' >&2;
+ echo $(libcdio_VERSION)
+endef
+
+define $(PKG)_BUILD
+ cd '$(1)' && ./configure \
+ $(MXE_CONFIGURE_OPTS)
+ $(MAKE) -C '$(1)' -j 1 install
+endef