mxe/src/speexdsp.mk

27 lines
990 B
Makefile
Raw Permalink Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
2015-09-28 20:03:27 +01:00
PKG := speexdsp
2017-03-05 03:41:39 +00:00
$(PKG)_WEBSITE := https://speex.org/
$(PKG)_DESCR := SpeexDSP
2015-09-28 20:03:27 +01:00
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.2rc3
$(PKG)_CHECKSUM := 4ae688600039f5d224bdf2e222d2fbde65608447e4c2f681585e4dca6df692f1
$(PKG)_SUBDIR := speexdsp-$($(PKG)_VERSION)
$(PKG)_FILE := speexdsp-$($(PKG)_VERSION).tar.gz
2017-07-15 02:42:53 +01:00
$(PKG)_URL := https://downloads.xiph.org/releases/speex/$($(PKG)_FILE)
$(PKG)_DEPS := cc
2015-09-28 20:03:27 +01:00
define $(PKG)_UPDATE
2017-03-05 03:41:39 +00:00
$(WGET) -q -O- 'https://git.xiph.org/?p=speexdsp.git;a=tags' | \
2015-09-28 20:03:27 +01:00
grep '<a class="list name"' | \
$(SED) -n 's,.*<a[^>]*>SpeexDSP-\([0-9][^<]*\)<.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS= doc_DATA=
$(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS= doc_DATA=
endef