annotate src/nsis.mk @ 3745:e3c3beae094b

nsis: install native bins to build tools path * src/nsis.mk: set PREFIX_BIN=$(BUILD_TOOLS_PREFIX)/bin
author John Donoghue
date Wed, 26 Nov 2014 12:20:39 -0500
parents ae4193aad5fe
children 7e15ef9bf1e5
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: 1838
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.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 389
diff changeset
3
322
3e5e759d95e3 new package: nsis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := nsis
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 422
diff changeset
5 $(PKG)_IGNORE :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3048
diff changeset
6 $(PKG)_VERSION := 2.46
579
2b211f6c7448 update version of package nsis
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
7 $(PKG)_CHECKSUM := 2cc9bff130031a0b1d76b01ec0a9136cdf5992ce
322
3e5e759d95e3 new package: nsis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 $(PKG)_SUBDIR := nsis-$($(PKG)_VERSION)-src
324
beb10af0e886 improved coding style: use a consistent order of variables
Volker Grabsch <vog@notjusthosting.com>
parents: 322
diff changeset
9 $(PKG)_FILE := nsis-$($(PKG)_VERSION)-src.tar.bz2
422
d2f5eb27e051 improved download URLs for all SourceForge packages to ensure that the selected SOURCEFORGE_MIRROR is really used
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/nsis/NSIS 2/$($(PKG)_VERSION)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
11 $(PKG)_DEPS :=
322
3e5e759d95e3 new package: nsis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
3e5e759d95e3 new package: nsis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
3561
ae4193aad5fe revise and enable more $(PKG)_UPDATE rules
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
14 $(WGET) -q -O- 'http://sourceforge.net/p/nsis/code/HEAD/tree/NSIS/tags/' | \
ae4193aad5fe revise and enable more $(PKG)_UPDATE rules
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
15 grep '<a href="' | \
ae4193aad5fe revise and enable more $(PKG)_UPDATE rules
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
16 $(SED) -n 's,.*<a href="v\([0-9]\)\([^"]*\)".*,\1.\2,p' | \
ae4193aad5fe revise and enable more $(PKG)_UPDATE rules
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
17 tail -1
322
3e5e759d95e3 new package: nsis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 endef
3e5e759d95e3 new package: nsis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19
3e5e759d95e3 new package: nsis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 define $(PKG)_BUILD
2994
a1d474da2036 Update nsis to mxe devel branch 22-May 2013.
John Donoghue <john.donoghue@ieee.org>
parents: 2525
diff changeset
21 cd '$(1)' && scons VERBOSE=1 \
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
22 MINGW_CROSS_PREFIX='$(MXE_TOOL_PREFIX)' \
3745
e3c3beae094b nsis: install native bins to build tools path
John Donoghue
parents: 3561
diff changeset
23 PREFIX='$(HOST_PREFIX)' PREFIX_BIN=$(BUILD_TOOLS_PREFIX)/bin \
389
a1b6f6a2015b portability for systems without /usr/local on package nsis
Volker Grabsch <vog@notjusthosting.com>
parents: 379
diff changeset
24 `[ -d /usr/local/include ] && echo APPEND_CPPPATH=/usr/local/include` \
a1b6f6a2015b portability for systems without /usr/local on package nsis
Volker Grabsch <vog@notjusthosting.com>
parents: 379
diff changeset
25 `[ -d /usr/local/lib ] && echo APPEND_LIBPATH=/usr/local/lib` \
379
518dc5012994 bugfix in the build options for package nsis
Volker Grabsch <vog@notjusthosting.com>
parents: 377
diff changeset
26 SKIPUTILS='NSIS Menu' \
376
95b292facf30 add search paths to libiconv on FreeBSD for package nsis
Volker Grabsch <vog@notjusthosting.com>
parents: 334
diff changeset
27 install
3745
e3c3beae094b nsis: install native bins to build tools path
John Donoghue
parents: 3561
diff changeset
28 $(INSTALL) -m755 '$(BUILD_TOOLS_PREFIX)/bin/makensis' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)makensis'
322
3e5e759d95e3 new package: nsis
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 endef