annotate src/bzip2.mk @ 2353:99516e73b368

Move doc/index.html -> index.html
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 29 Mar 2012 12:14:15 +0200
parents f48c5b085a38
children b5321bdec505
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: 1390
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
204
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # bzip2
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
5 PKG := bzip2
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 :=
1170
25345fdf9752 upgrade package bzip2
Mark Brand <mabrand@mabrand.nl>
parents: 807
diff changeset
7 $(PKG)_CHECKSUM := 3f89f861209ce81a6bab1fd1998c0ef311712002
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
8 $(PKG)_SUBDIR := bzip2-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
9 $(PKG)_FILE := bzip2-$($(PKG)_VERSION).tar.gz
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
10 $(PKG)_URL := http://www.bzip.org/$($(PKG)_VERSION)/$($(PKG)_FILE)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
11 $(PKG)_DEPS := gcc
204
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 wget -q -O- 'http://www.bzip.org/downloads.html' | \
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 grep 'bzip2-' | \
266
b94424e6c37f improved the regexes for package version recognition
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
16 $(SED) -n 's,.*bzip2-\([0-9][^>]*\)\.tar.*,\1,p' | \
204
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 head -1
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 endef
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 define $(PKG)_BUILD
759
bf4bcb3370fa changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
21 $(SED) -i 's,sys\\stat\.h,sys/stat.h,g' '$(1)/bzip2.c'
807
622c0a7b8f0e bugfix: don't use WINAPI in package bzip2
Volker Grabsch <vog@notjusthosting.com>
parents: 759
diff changeset
22 $(SED) -i 's,WINAPI,,g' '$(1)/bzlib.h'
204
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 $(MAKE) -C '$(1)' -j '$(JOBS)' libbz2.a \
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 PREFIX='$(PREFIX)/$(TARGET)' \
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 CC='$(TARGET)-gcc' \
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 AR='$(TARGET)-ar' \
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 RANLIB='$(TARGET)-ranlib'
285
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
28 $(INSTALL) -d '$(PREFIX)/$(TARGET)/lib'
1390
7fae546007a1 fix dummy permissions (664 -> 644)
Volker Grabsch <vog@notjusthosting.com>
parents: 1170
diff changeset
29 $(INSTALL) -m644 '$(1)/libbz2.a' '$(PREFIX)/$(TARGET)/lib/'
285
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
30 $(INSTALL) -d '$(PREFIX)/$(TARGET)/include'
1390
7fae546007a1 fix dummy permissions (664 -> 644)
Volker Grabsch <vog@notjusthosting.com>
parents: 1170
diff changeset
31 $(INSTALL) -m644 '$(1)/bzlib.h' '$(PREFIX)/$(TARGET)/include/'
204
f79850118439 new package: bzip2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 endef