summaryrefslogtreecommitdiffstats
path: root/src/libdca.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/libdca.mk')
-rw-r--r--src/libdca.mk30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/libdca.mk b/src/libdca.mk
deleted file mode 100644
index 1fde84b..0000000
--- a/src/libdca.mk
+++ /dev/null
@@ -1,30 +0,0 @@
-# This file is part of MXE.
-# See index.html for further information.
-
-PKG := libdca
-$(PKG)_IGNORE :=
-$(PKG)_VERSION := 0.0.5
-$(PKG)_CHECKSUM := dba022e022109a5bacbe122d50917769ff27b64a7bba104bd38ced8de8510642
-$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
-$(PKG)_FILE := $($(PKG)_SUBDIR).tar.bz2
-$(PKG)_URL := http://download.videolan.org/pub/videolan/libdca/$($(PKG)_VERSION)/$($(PKG)_FILE)
-$(PKG)_DEPS := gcc
-
-define $(PKG)_UPDATE
- $(WGET) -q -O- 'https://www.videolan.org/developers/libdca.html' | \
- $(SED) -n 's,.*libdca-\([0-9][^"]*\)\.tar.*,\1,p' | \
- head -1
-endef
-
-define $(PKG)_BUILD
- cd '$(1)' && ./configure \
- $(MXE_CONFIGURE_OPTS) \
- CFLAGS='-std=gnu89'
- $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
- $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
-
- '$(TARGET)-gcc' \
- -W -Wall -Werror -ansi -pedantic \
- '$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-libdca.exe' \
- `'$(TARGET)-pkg-config' libdca --cflags --libs`
-endef