annotate src/old.mk @ 3012:100e618349f7

Improve handling of prefix directories by defining HOST_PREFIX and BUILD_TOOLS_PREFIX variables in top-level Makefile.
author John W. Eaton <jwe@octave.org>
date Sun, 02 Jun 2013 10:31:04 -0400
parents 4d0f3a9da57e
children b6c7244a2f66
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: 714
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: 285
diff changeset
4 PKG := old
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 :=
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
6 $(PKG)_CHECKSUM := d519a8282b0774c344ffeb1b4899f8be53d6d7b3
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
7 $(PKG)_SUBDIR := old-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
8 $(PKG)_FILE := old-$($(PKG)_VERSION).tar.bz2
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
9 $(PKG)_URL := http://blitiri.com.ar/p/old/files/$($(PKG)_VERSION)/$($(PKG)_FILE)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
10 $(PKG)_DEPS := gcc
262
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
13 $(WGET) -q -O- 'http://blitiri.com.ar/p/old/' | \
262
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 grep 'old-' | \
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 $(SED) -n 's,.*old-\([0-9][^>]*\)\.tar.*,\1,p' | \
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 head -1
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 cd '$(1)' && $(TARGET)-gcc -O3 -Iinclude -c -o libold.o lib/libold.c
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 cd '$(1)' && $(TARGET)-ar cr libold.a libold.o
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 $(TARGET)-ranlib '$(1)/libold.a'
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2525
diff changeset
23 $(INSTALL) -d '$(HOST_PREFIX)/lib'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2525
diff changeset
24 $(INSTALL) -m644 '$(1)/libold.a' '$(HOST_PREFIX)/lib/'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2525
diff changeset
25 $(INSTALL) -d '$(HOST_PREFIX)/include'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2525
diff changeset
26 $(INSTALL) -m644 '$(1)/lib/old.h' '$(HOST_PREFIX)/include/'
262
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 endef