annotate src/flac.mk @ 6113:24e29dcb2e64

Qt5: Update to version 5.15.3. * src/qtbase.mk: Update version and checksum. * src/qtbase-2-gcc11.patch: Remove hunks from patch that have been applied upstream. * src/qtimageformats.mk, src/qtsvg.mk, src/qttools.mk, src/qttranslationse.mk: Update checksum.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 05 Mar 2022 10:59:53 +0100
parents 1bf47a1e03c1
children a41bc595077f
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.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
513
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := flac
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
6094
1bf47a1e03c1 * src/flac.mk: updatye to v1.3.4
John Donoghue <john.donoghue@ieee.org>
parents: 5962
diff changeset
6 $(PKG)_VERSION := 1.3.4
1bf47a1e03c1 * src/flac.mk: updatye to v1.3.4
John Donoghue <john.donoghue@ieee.org>
parents: 5962
diff changeset
7 $(PKG)_CHECKSUM := 99c28482a8b2d81deaf740639e4cb55658427420
513
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 $(PKG)_SUBDIR := flac-$($(PKG)_VERSION)
3631
f11ee3f8e632 flac: update version
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
9 $(PKG)_FILE := flac-$($(PKG)_VERSION).tar.xz
f11ee3f8e632 flac: update version
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
10 $(PKG)_URL := http://downloads.xiph.org/releases/flac/$($(PKG)_FILE)
f11ee3f8e632 flac: update version
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
11
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
12 $(PKG)_DEPS := libiconv ogg
513
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 define $(PKG)_UPDATE
4384
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 3878
diff changeset
15 $(WGET) -q -O- 'http://downloads.xiph.org/releases/flac/' | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 3878
diff changeset
16 grep 'flac-' | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 3878
diff changeset
17 $(SED) -n 's,.*flac-\([0-9][^>]*\)\.tar.*,\1,p' | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 3878
diff changeset
18 tail -1
513
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 endef
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 define $(PKG)_BUILD
5962
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5436
diff changeset
22 cd '$(1)' && autoreconf -fi && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
23 $(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
24 $(ENABLE_SHARED_OR_STATIC) \
5962
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5436
diff changeset
25 $(CONFIGURE_LDFLAGS) $(CONFIGURE_CPPFLAGS) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
26 --prefix='$(HOST_PREFIX)' \
513
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 --disable-doxygen-docs \
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 --disable-xmms-plugin \
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 --enable-cpplibs \
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 --enable-ogg \
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 --disable-oggtest
5436
9b7ed61c1990 * src/flac.mk: add configure options, verbose output
John Donoghue <john.donoghue@ieee.org>
parents: 5136
diff changeset
32 $(MAKE) -C '$(1)' -j '$(JOBS)' $(MXE_DISABLE_PROGS) $(MXE_DISABLE_DOCS) VERBOSE=1
9b7ed61c1990 * src/flac.mk: add configure options, verbose output
John Donoghue <john.donoghue@ieee.org>
parents: 5136
diff changeset
33 $(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_PROGS) $(MXE_DISABLE_DOCS) DESTDIR='$(3)'
513
c5d1f0ee0f0b new package: flac
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
34 endef