annotate src/lua.mk @ 3877:65b9641f852c

build-binutils: remove native tools from HOST_PREFIX/bin (Bug 44753) * src/build-binutils.mk: for win64, remove ar as dlltool ld ld.bfd nm objcopy objdump ranlib strip from the HOST/bin folder
author John Donoghue
date Tue, 07 Apr 2015 12:20:02 -0400
parents 13be64f9f16d
children e0d11dd0878d
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: 1849
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.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 306
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 290
diff changeset
4 PKG := lua
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
5 $(PKG)_IGNORE :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3048
diff changeset
6 $(PKG)_VERSION := 5.2.1
2811
7959efe5af1f update package lua
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
7 $(PKG)_CHECKSUM := 6bb1b0a39b6a5484b71a83323c690154f86b2021
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 290
diff changeset
8 $(PKG)_SUBDIR := lua-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 290
diff changeset
9 $(PKG)_FILE := lua-$($(PKG)_VERSION).tar.gz
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 290
diff changeset
10 $(PKG)_URL := http://www.lua.org/ftp/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
11 $(PKG)_DEPS :=
186
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2409
diff changeset
14 $(WGET) -q -O- 'http://www.lua.org/download.html' | \
186
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 $(SED) -n 's,.*lua-\([0-9][^>]*\)\.tar.*,\1,p' | \
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 head -1
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 $(MAKE) -C '$(1)/src' -j '$(JOBS)' \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2811
diff changeset
21 INSTALL_TOP='$(HOST_PREFIX)' \
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
22 CC='$(MXE_CC)' \
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
23 AR='$(MXE_AR) rcu' \
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
24 RANLIB='$(MXE_RANLIB)' \
186
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 a
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 $(MAKE) -C '$(1)' -j 1 \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2811
diff changeset
27 INSTALL_TOP='$(HOST_PREFIX)' \
186
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 INSTALL_BIN='$(1)/noinstall' \
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 INSTALL_MAN='$(1)/noinstall' \
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 TO_BIN='lua.h' \
290
bbb279243ae0 portability fix for Open Solaris: Enforce the use of $(INSTALL) in package lua (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
31 INSTALL='$(INSTALL)' \
1849
e9ccf30fcdaa fix ranlib issues in package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1801
diff changeset
32 install
1475
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents: 714
diff changeset
33
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
34 '$(MXE_CC)' \
1476
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
35 -W -Wall -Werror -ansi -pedantic \
3014
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
36 '$(2).c' -o '$(HOST_BINDIR)/test-lua.exe' \
2409
89d0ae6cb123 update package lua
beoran <beoran@rubyforge.org>
parents: 2385
diff changeset
37 -llua
186
61e5dd6998f9 new package: lua
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
38 endef