annotate src/jpeg.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 4f9b72cf7ee7
children bcc26ffe9a0f
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: 2208
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: 324
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
4 PKG := jpeg
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 :=
2208
ddc26046c388 update package jpeg
Mark Brand <mabrand@mabrand.nl>
parents: 1717
diff changeset
6 $(PKG)_CHECKSUM := f080b2fffc7581f7d19b968092ba9ebc234556ff
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
7 $(PKG)_SUBDIR := jpeg-$($(PKG)_VERSION)
632
700f5dadfcf5 update version and version recognition of package jpeg
Volker Grabsch <vog@notjusthosting.com>
parents: 620
diff changeset
8 $(PKG)_FILE := jpegsrc.v$($(PKG)_VERSION).tar.gz
700f5dadfcf5 update version and version recognition of package jpeg
Volker Grabsch <vog@notjusthosting.com>
parents: 620
diff changeset
9 $(PKG)_URL := http://www.ijg.org/files/$($(PKG)_FILE)
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
10 $(PKG)_DEPS := gcc
149
38ddc0df2497 translated package: jpeg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
38ddc0df2497 translated package: jpeg
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://www.ijg.org/' | \
632
700f5dadfcf5 update version and version recognition of package jpeg
Volker Grabsch <vog@notjusthosting.com>
parents: 620
diff changeset
14 $(SED) -n 's,.*jpegsrc\.v\([0-9][^>]*\)\.tar.*,\1,p' | \
700f5dadfcf5 update version and version recognition of package jpeg
Volker Grabsch <vog@notjusthosting.com>
parents: 620
diff changeset
15 head -1
149
38ddc0df2497 translated package: jpeg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 endef
38ddc0df2497 translated package: jpeg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17
38ddc0df2497 translated package: jpeg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 define $(PKG)_BUILD
38ddc0df2497 translated package: jpeg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 cd '$(1)' && ./configure \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
20 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
21 --prefix='$(HOST_PREFIX)' \
632
700f5dadfcf5 update version and version recognition of package jpeg
Volker Grabsch <vog@notjusthosting.com>
parents: 620
diff changeset
22 --host='$(TARGET)' \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2525
diff changeset
23 $(ENABLE_SHARED_OR_STATIC)
632
700f5dadfcf5 update version and version recognition of package jpeg
Volker Grabsch <vog@notjusthosting.com>
parents: 620
diff changeset
24 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS=
149
38ddc0df2497 translated package: jpeg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 endef