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/alure.mk

33 lines
1.1 KiB

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := alure
$(PKG)_WEBSITE := http://kcat.strangesoft.net/alure.html
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.2
$(PKG)_CHECKSUM := 465e6adae68927be3a023903764662d64404e40c4c152d160e3a8838b1d70f71
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := http://kcat.strangesoft.net/alure-releases/$($(PKG)_FILE)
$(PKG)_DEPS := cc flac libsndfile mpg123 ogg openal vorbis
define $(PKG)_UPDATE
$(WGET) -q -O- http://repo.or.cz/w/alure.git/tags | \
grep alure- | \
$(SED) -n 's,.*alure-\([0-9\.]*\)<.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)/build' && '$(TARGET)-cmake' \
-DDYNLOAD=OFF \
-DBUILD_EXAMPLES=OFF \
-DFLUIDSYNTH=OFF \
-DCMAKE_C_FLAGS="-DAL_LIBTYPE_STATIC -DALURE_STATIC_LIBRARY" \
-DCMAKE_CXX_FLAGS="-DAL_LIBTYPE_STATIC -DALURE_STATIC_LIBRARY" \
..
$(MAKE) -C '$(1)/build' -j $(JOBS) VERBOSE=1
$(MAKE) -C '$(1)/build' -j $(JOBS) install
endef
$(PKG)_BUILD_SHARED =