annotate src/lame.mk @ 7207:9ed6500e56d3 default tip @

maint: Merge release to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 17 May 2024 20:16:41 +0200
parents 19fa05ab2de6
children
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
4939
09b9fb62f446 lame: update to version 3.100
John W. Eaton <jwe@octave.org>
parents: 4384
diff changeset
4 http://downloads.sourceforge.net/project/lame/lame
09b9fb62f446 lame: update to version 3.100
John W. Eaton <jwe@octave.org>
parents: 4384
diff changeset
5
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
6 PKG := lame
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
7 $(PKG)_IGNORE :=
4939
09b9fb62f446 lame: update to version 3.100
John W. Eaton <jwe@octave.org>
parents: 4384
diff changeset
8 $(PKG)_VERSION := 3.100
09b9fb62f446 lame: update to version 3.100
John W. Eaton <jwe@octave.org>
parents: 4384
diff changeset
9 $(PKG)_CHECKSUM := 64c53b1a4d493237cef5e74944912cd9f98e618d
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
10 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
11 $(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
12 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
5458
19fa05ab2de6 * src/lame.mk: termcap a dependancy in mingw
John Donoghue <john.donoghue@ieee.org>
parents: 5454
diff changeset
13 $(PKG)_DEPS := libiconv gettext
19fa05ab2de6 * src/lame.mk: termcap a dependancy in mingw
John Donoghue <john.donoghue@ieee.org>
parents: 5454
diff changeset
14
19fa05ab2de6 * src/lame.mk: termcap a dependancy in mingw
John Donoghue <john.donoghue@ieee.org>
parents: 5454
diff changeset
15 ifeq ($(MXE_SYSTEM),mingw)
19fa05ab2de6 * src/lame.mk: termcap a dependancy in mingw
John Donoghue <john.donoghue@ieee.org>
parents: 5454
diff changeset
16 $(PKG)_DEPS += termcap
19fa05ab2de6 * src/lame.mk: termcap a dependancy in mingw
John Donoghue <john.donoghue@ieee.org>
parents: 5454
diff changeset
17 endif
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
18
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
19 define $(PKG)_UPDATE
4939
09b9fb62f446 lame: update to version 3.100
John W. Eaton <jwe@octave.org>
parents: 4384
diff changeset
20 $(WGET) -q -O- 'http://sourceforge.net/projects/lame/files/lame/3.100' | \
4384
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4303
diff changeset
21 $(SED) -n 's,.*lame-\([0-9][0-9.]*\)\.tar.*,\1,p' | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4303
diff changeset
22 $(SORT) -V | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4303
diff changeset
23 tail -1
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
24 endef
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
25
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
26 define $(PKG)_BUILD
4939
09b9fb62f446 lame: update to version 3.100
John W. Eaton <jwe@octave.org>
parents: 4384
diff changeset
27 cd '$(1)' && \
3621
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
28 ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
29 $(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
30 --prefix='$(HOST_PREFIX)' \
3621
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
31 $(ENABLE_SHARED_OR_STATIC) \
2b24e408ea4a lame: update version from mxe_devel
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
32 --disable-frontend
1257
afabf3a51818 new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Di Appoggio <diappoggio@gmail.com>
parents:
diff changeset
33 $(MAKE) -C '$(1)' -j '$(JOBS)'
4303
eac52a8a7822 Disable more doc files
John D
parents: 3621
diff changeset
34 $(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
35 endef