annotate src/npp.mk @ 2987:eb1643bd900c

mk-dist: new argument, --no-strip
author John W. Eaton <jwe@octave.org>
date Thu, 16 May 2013 13:32:37 -0400
parents 6175239c45eb
children 13be64f9f16d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2968
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := npp
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 $(PKG)_CHECKSUM := e246ebb89c10b71ed483b866ea90385a661092e6
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 $(PKG)_SUBDIR := unicode
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_FILE := $(PKG).$($(PKG)_VERSION).bin.zip
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_URL := http://download.tuxfamily.org/notepadplus/$($(PKG)_VERSION)/$($(PKG)_FILE)
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_DEPS :=
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 define $(PKG)_UPDATE
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 echo 'Warning: Updates are temporarily disabled for package Notepad++.' >&2;
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo $($(PKG)_VERSION)
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 endef
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 define $(PKG)_BUILD
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 mkdir -p '$(NOTEPAD_BASE_DIR)'
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 cd '$(1)' && tar cf - . | ( cd '$(NOTEPAD_BASE_DIR)'; tar xpf - )
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 endef