annotate src/s2tc.mk @ 4507:4c645e979279

s2tc: New package.
author John W. Eaton <jwe@octave.org>
date Thu, 12 Oct 2017 05:55:18 -0400
parents
children 859c456e1257
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
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS :=
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 ifeq ($(MXE_WINDOWS_BUILD),yes)
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 define $(PKG)_BUILD
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 endef
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 else
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 define $(PKG)_BUILD
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 cd '$(1)' && ./autogen.sh
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 mkdir '$(1)/.build'
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 cd '$(1)/.build' && $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 --prefix='$(HOST_PREFIX)' \
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 && $(CONFIGURE_POST_HOOK)
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)'
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 endef
4c645e979279 s2tc: New package.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 endif