annotate src/lame.mk @ 4733:1ecb1e67eaa1

* src/src-msys-dos2unix.mk: update checksum
author John Donoghue <john.donoghue@ieee.org>
date Sat, 09 Jun 2018 10:13:46 -0400
parents d5a5b8e659de
children 09b9fb62f446
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2153
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
3
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
4 PKG := lame
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3621
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
6 $(PKG)_VERSION := 3.99.5
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
7 $(PKG)_CHECKSUM := 03a0bfa85713adcc6b3383c12e2cc68a9cfbf4c4
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
3621
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
11 $(PKG)_DEPS := libiconv gettext
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
12
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
4384
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4303
diff changeset
14 $(WGET) -q -O- 'http://sourceforge.net/projects/lame/files/lame/3.99' | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4303
diff changeset
15 $(SED) -n 's,.*lame-\([0-9][0-9.]*\)\.tar.*,\1,p' | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4303
diff changeset
16 $(SORT) -V | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4303
diff changeset
17 tail -1
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
18 endef
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
19
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
20 define $(PKG)_BUILD
3621
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
21 cd '$(1)' && autoreconf -i -I '$(HOST_PREFIX)/share/aclocal' && \
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
22 ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
23 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
24 --prefix='$(HOST_PREFIX)' \
3621
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
25 $(ENABLE_SHARED_OR_STATIC) \
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
26 --disable-frontend
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
27 $(MAKE) -C '$(1)' -j '$(JOBS)'
4303
eac52a8a7822 Disable more doc files
John D
parents: 3621
diff changeset
28 $(MAKE) -C '$(1)' -j 1 install DESTDIR='$(3)' $(MXE_DISABLE_DOCS)
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
29 endef