comparison src/lame.mk @ 3621:2b24e408ea4a

lame: update version from mxe_devel * src/lame.mk: update version * lame-1-fix-xmmintrin-errors.patch: new file from mxe_devel * lame-2-update-autotools.patch: new file from mxe_devel * dist-files.mk: added lame-1-fix-xmmintrin-errors.patch lame-2-update-autotools.patch
author John Donoghue <john.donoghue@ieee.org>
date Fri, 27 Jun 2014 21:13:38 -0400
parents 13be64f9f16d
children eac52a8a7822
comparison
equal deleted inserted replaced
3620:5416bfbf1e48 3621:2b24e408ea4a
1 # This file is part of MXE. 1 # This file is part of MXE.
2 # See index.html for further information. 2 # See index.html for further information.
3 3
4 PKG := lame 4 PKG := lame
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 3.99 6 $(PKG)_VERSION := 3.99.5
7 $(PKG)_CHECKSUM := 91dfd25bedc02759051a6b3af05e61337a575028 7 $(PKG)_CHECKSUM := 03a0bfa85713adcc6b3383c12e2cc68a9cfbf4c4
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) 8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz 9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE) 10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
11 $(PKG)_DEPS := 11 $(PKG)_DEPS := libiconv gettext
12 12
13 define $(PKG)_UPDATE 13 define $(PKG)_UPDATE
14 $(WGET) -q -O- 'http://sourceforge.net/projects/lame/files/lame/' | \ 14 $(WGET) -q -O- 'http://sourceforge.net/projects/lame/files/lame/' | \
15 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ 15 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
16 head -1 16 head -1
17 endef 17 endef
18 18
19 define $(PKG)_BUILD 19 define $(PKG)_BUILD
20 cd '$(1)' && ./configure \ 20 cd '$(1)' && autoreconf -i -I '$(HOST_PREFIX)/share/aclocal' && \
21 ./configure \
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ 22 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
22 --prefix='$(HOST_PREFIX)' \ 23 --prefix='$(HOST_PREFIX)' \
23 $(ENABLE_SHARED_OR_STATIC) 24 $(ENABLE_SHARED_OR_STATIC) \
25 --disable-frontend
24 $(MAKE) -C '$(1)' -j '$(JOBS)' 26 $(MAKE) -C '$(1)' -j '$(JOBS)'
25 $(MAKE) -C '$(1)' -j 1 install 27 $(MAKE) -C '$(1)' -j 1 install DESTDIR='$(3)'
26 endef 28 endef