annotate src/old.mk @ 2333:f653602a0500

Rebrand to new project name MXE
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 28 Mar 2012 15:46:58 +0200
parents 29f1ba4559ae
children f48c5b085a38
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.
714
29f1ba4559ae point consequently to "doc/index.html" instead of "doc/index.html or doc/README"
Volker Grabsch <vog@notjusthosting.com>
parents: 641
diff changeset
2 # See doc/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
262
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # old
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
5 PKG := old
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
6 $(PKG)_IGNORE :=
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
7 $(PKG)_VERSION := 0.17
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
8 $(PKG)_CHECKSUM := d519a8282b0774c344ffeb1b4899f8be53d6d7b3
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
9 $(PKG)_SUBDIR := old-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
10 $(PKG)_FILE := old-$($(PKG)_VERSION).tar.bz2
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
11 $(PKG)_WEBSITE := http://blitiri.com.ar/p/old/
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
12 $(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
13 $(PKG)_DEPS := gcc
262
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 define $(PKG)_UPDATE
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 wget -q -O- 'http://blitiri.com.ar/p/old/' | \
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 grep 'old-' | \
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 $(SED) -n 's,.*old-\([0-9][^>]*\)\.tar.*,\1,p' | \
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 head -1
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 endef
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 define $(PKG)_BUILD
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 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
24 cd '$(1)' && $(TARGET)-ar cr libold.a libold.o
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 $(TARGET)-ranlib '$(1)/libold.a'
285
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
26 $(INSTALL) -d '$(PREFIX)/$(TARGET)/lib'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
27 $(INSTALL) -m644 '$(1)/libold.a' '$(PREFIX)/$(TARGET)/lib/'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
28 $(INSTALL) -d '$(PREFIX)/$(TARGET)/include'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
29 $(INSTALL) -m644 '$(1)/lib/old.h' '$(PREFIX)/$(TARGET)/include/'
262
6b8b208a5114 new package: old
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 endef