annotate src/t4k_common.mk @ 7220:d3087afece14 default tip @

* src/gdal.mk, src/xcb.mk: disable doxygen docs
author John Donoghue <john.donoghue@ieee.org>
date Wed, 22 May 2024 10:31:54 -0400
parents 07817ebc1abc
children
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: 1803
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.
1802
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
diff changeset
3
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
diff changeset
4 PKG := t4k_common
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
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 := 0.1.1
1802
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
diff changeset
7 $(PKG)_CHECKSUM := 626eddedee86059ccab593a226c8d98571018b46
1803
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
9 $(PKG)_FILE := $($(PKG)_SUBDIR).tar.gz
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/tuxmath/$(PKG)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
11 $(PKG)_DEPS := sdl sdl_mixer sdl_image sdl_net sdl_pango sdl_ttf libpng librsvg libxml2 pthreads
1802
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
diff changeset
12
1803
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
13 define $(PKG)_UPDATE
4868
07817ebc1abc * src/t4k_common.mk: update to query update from sourceforge
John Donoghue
parents: 3480
diff changeset
14 $(WGET) -q -O- 'http://sourceforge.net/projects/tuxmath/files/$(PKG)/' | \
1803
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
15 $(SED) -n 's,.*t4k_common-\([0-9][^>]*\)\.tar.*,\1,p' | \
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
16 head -1
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
17 endef
1802
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
diff changeset
18
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
diff changeset
19 define $(PKG)_BUILD
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
diff changeset
20 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2525
diff changeset
22 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
23 --prefix='$(HOST_PREFIX)' \
1803
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
24 --with-sdlpango \
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
25 --with-sdlnet \
e38874b4feea corrections and improvements for package t4k_common
Volker Grabsch <vog@notjusthosting.com>
parents: 1802
diff changeset
26 --with-rsvg
1802
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
diff changeset
27 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
5df0bfc44e8d new package: t4k_common
David Bruce <davidstuartbruce@gmail.com>
parents:
diff changeset
28 endef