# This file is part of MXE. # See index.html for further information. # sox PKG := sox $(PKG)_IGNORE := $(PKG)_CHECKSUM := d809cab382c7a9d015491c69051a9d1c1a1a44f1 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_DEPS := gcc ffmpeg flac lame libgomp libmad libsndfile vorbis define $(PKG)_UPDATE wget -q -O- 'http://sourceforge.net/projects/sox/files/sox/' | \ $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ head -1 endef define $(PKG)_BUILD # set pkg-config cflags and libs $(SED) -i 's,^\(Cflags:.*\),\1 -fopenmp,' '$(1)/sox.pc.in' $(SED) -i '/Libs.private/d' '$(1)/sox.pc.in' echo Libs.private: `grep sox_LDADD '$(1)/src/optional-fmts.am' | \ $(SED) 's, sox_LDADD += ,,g' | tr -d '\n'` >>'$(1)/sox.pc.in' cd '$(1)' && ./configure \ --host='$(TARGET)' \ --prefix='$(PREFIX)/$(TARGET)' \ --build="`config.guess`" \ --disable-shared $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= EXTRA_PROGRAMS= $(MAKE) -C '$(1)' -j 1 install '$(TARGET)-gcc' \ -W -Wall -Werror -ansi -pedantic \ '$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-sox.exe' \ `'$(TARGET)-pkg-config' sox --cflags --libs` endef