annotate src/s2tc.mk @ 4618:de2eedecd6ba

update broken PKG_UPDATE rules, handle missing update rules * Makefile.in: add handling for packages with no update rule * src/gtk2.mk, src/gtk3.mk, src/libvpx.mk, src/taglib.mk, src/hunspell.mk, src/vala.mk : use github tags for version info * src/llvm.mk: add '?' to update url * src/openscenegraph.mk: update SED rule for version extraction * src/pthread-stubs.mk, src/qt5.mk, src/renderproto.mk, src/sm.mk, src/s2tc.mk, src/util-macros.mk: added dummy PKG_UPDATE rule * src/qscintilla.mk: change search name for version extraction * src/qtbase.mk: use short pkg version in update path * src/suitesparse.mk: update change in main url/version url * src/tre.mk: update download page link * src/vmime.mk: update download and update url * src/wget.mk, src/xapian-core.mk: update url, sed rule * src/wt.mk: update to use github download/update * src/src-msys-libcrypt.mk: update sed rule
author John Donoghue
date Fri, 09 Mar 2018 11:46:42 -0500
parents e575e2afdae4
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