You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/libshout.mk

29 lines
840 B

# This file is part of mingw-cross-env.
# See doc/index.html for further information.
# libshout
PKG := libshout
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.2.2
$(PKG)_CHECKSUM := cabc409e63f55383f4d85fac26d3056bf0365aac
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://www.icecast.org
$(PKG)_URL := http://downloads.us.xiph.org/releases/$(PKG)/$($(PKG)_FILE)
$(PKG)_DEPS := gcc vorbis ogg theora speex
define $(PKG)_UPDATE
echo "Update not implemented"
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--prefix='$(PREFIX)/$(TARGET)' \
--disable-shared \
--disable-debug \
--infodir='$(1)/sink' \
--mandir='$(1)/sink'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef