annotate src/fribidi.mk @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +0200
parents 8f79ecbe790c
children d7d85a3fe7e7
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: 1499
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.
812
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := fribidi
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5483
8f79ecbe790c * src/fribidi.mk: update to v1.0.10
John Donoghue <john.donoghue@ieee.org>
parents: 5411
diff changeset
6 $(PKG)_VERSION := 1.0.10
8f79ecbe790c * src/fribidi.mk: update to v1.0.10
John Donoghue <john.donoghue@ieee.org>
parents: 5411
diff changeset
7 $(PKG)_CHECKSUM := e22d6cf070966d2735b8e1a6d961a87f1e828a99
812
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
5338
814092edb9d8 * src/fribidi.mk: upddate for v1.0.9
John Donoghue
parents: 4994
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz
814092edb9d8 * src/fribidi.mk: upddate for v1.0.9
John Donoghue
parents: 4994
diff changeset
10 $(PKG)_URL := https://github.com/fribidi/fribidi/releases/download/v$($(PKG)_VERSION)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
11 $(PKG)_DEPS := glib
812
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
4538
979f5b397e51 maint: update PKG_UPDATE targets
John D
parents: 3480
diff changeset
14 $(WGET) -q -O- https://github.com/fribidi/fribidi/tags | \
5338
814092edb9d8 * src/fribidi.mk: upddate for v1.0.9
John Donoghue
parents: 4994
diff changeset
15 $(SED) -n 's|.*releases/tag/v\([^"]*\).*|\1|p' | \
812
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 head -1
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
813
46b1eb76c87d bugfixes for package fribidi
Volker Grabsch <vog@notjusthosting.com>
parents: 812
diff changeset
20 $(SED) -i 's,__declspec(dllimport),,' '$(1)/lib/fribidi-common.h'
812
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
22 $(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: 2709
diff changeset
23 $(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
24 --prefix='$(HOST_PREFIX)' \
812
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 --disable-debug \
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 --disable-deprecated \
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 --enable-charsets \
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 --with-glib
5411
dda43b9e6213 * src/fribidi.mk: install using DESTDIR, use MXE_DISABLE_PROGS and MXE_DISABLE_DOCS
John Donoghue <john.donoghue@ieee.org>
parents: 5338
diff changeset
29 $(MAKE) -C '$(1)' -j '$(JOBS)' install $(MXE_DISABLE_PROGS) $(MXE_DISABLE_DOCS) DESTDIR='$(3)'
812
cc5accf80b3b new package: fribidi
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 endef