annotate src/s2tc.mk @ 7207:9ed6500e56d3 default tip @

maint: Merge release to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 17 May 2024 20:16:41 +0200
parents de2eedecd6ba
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4507
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := s2tc
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 $(PKG)_VERSION := 1.0
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 $(PKG)_CHECKSUM := 08295ae27abe2718f7be01f490e7a08353060291
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := s2tc-$($(PKG)_VERSION)
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := s2tc-$($(PKG)_VERSION).zip
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := https://github.com/divVerent/s2tc/archive/v$($(PKG)_VERSION).zip
4516
e575e2afdae4 mesa-proto: new package
John W. Eaton <jwe@octave.org>
parents: 4512
diff changeset
11 $(PKG)_DEPS := mesa-proto
4507
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
4618
de2eedecd6ba update broken PKG_UPDATE rules, handle missing update rules
John Donoghue
parents: 4516
diff changeset
13 define $(PKG)_UPDATE
de2eedecd6ba update broken PKG_UPDATE rules, handle missing update rules
John Donoghue
parents: 4516
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
de2eedecd6ba update broken PKG_UPDATE rules, handle missing update rules
John Donoghue
parents: 4516
diff changeset
15 echo $($(PKG)_VERSION)
de2eedecd6ba update broken PKG_UPDATE rules, handle missing update rules
John Donoghue
parents: 4516
diff changeset
16 endef
de2eedecd6ba update broken PKG_UPDATE rules, handle missing update rules
John Donoghue
parents: 4516
diff changeset
17
4512
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
18 define $(PKG)_BUILD
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
19 cd '$(1)' && ./autogen.sh
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
20 mkdir '$(1)/.build'
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
21 cd '$(1)/.build' && $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
22 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
23 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
24 $(ENABLE_SHARED_OR_STATIC) \
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
25 --prefix='$(HOST_PREFIX)' \
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
26 --disable-tools \
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
27 && $(CONFIGURE_POST_HOOK)
4507
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28
4512
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
29 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)'
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
30
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
31 ## Mesa attempts to dynamically load dxtn.dll on Windows systems.
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
32 if [ $(MXE_WINDOWS_BUILD) = yes ]; then \
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
33 mv '$(3)$(HOST_BINDIR)/libtxc_dxtn-0.dll' '$(3)$(HOST_BINDIR)/dxtn.dll'; \
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
34 fi
859c456e1257 s2tc: enable Windows build.
John W. Eaton <jwe@octave.org>
parents: 4507
diff changeset
35 endef