annotate src/npp.mk @ 6514:4c018df0768c

* src/npp.mk: update to v8.4.7
author John Donoghue <john.donoghue@ieee.org>
date Wed, 09 Nov 2022 11:33:18 -0500
parents d0f5a443376d
children fe6e119f6099
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 :=
6514
4c018df0768c * src/npp.mk: update to v8.4.7
John Donoghue <john.donoghue@ieee.org>
parents: 6436
diff changeset
6 $(PKG)_VERSION := 8.4.7
4c018df0768c * src/npp.mk: update to v8.4.7
John Donoghue <john.donoghue@ieee.org>
parents: 6436
diff changeset
7 $(PKG)_CHECKSUM := bf6f9950591d95233598d8c1ff11e25225ed0b2f
5150
9c90616e402f * src/npp.mk: update to v7.7.1
John Donoghue
parents: 3931
diff changeset
8 $(PKG)_SUBDIR :=
5622
763f5e165b5a * src/npp.mk: update to v7.9.1
John Donoghue <john.donoghue@ieee.org>
parents: 5492
diff changeset
9 $(PKG)_FILE := $(PKG).$($(PKG)_VERSION).portable.zip
5227
68e2c929d836 * src/npp.mk: Update download URL.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5226
diff changeset
10 $(PKG)_URL := https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$($(PKG)_VERSION)/$($(PKG)_FILE)
2968
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS :=
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
5226
df82dcc892d1 * src/npp.mk: update update url, update to v7.8.1
John Donoghue
parents: 5178
diff changeset
14 $(WGET) -q -O- 'https://notepad-plus-plus.org/downloads/' | \
5178
7b798a7f20d1 * src/npp.mk: fix update rule
John Donoghue
parents: 5150
diff changeset
15 $(GREP) 'Current' | \
7b798a7f20d1 * src/npp.mk: fix update rule
John Donoghue
parents: 5150
diff changeset
16 $(SED) -n 's|.*/v\([^/]*\).*|\1|p' | \
5150
9c90616e402f * src/npp.mk: update to v7.7.1
John Donoghue
parents: 3931
diff changeset
17 tail -1
2968
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 endef
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 define $(PKG)_BUILD
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 mkdir -p '$(NOTEPAD_BASE_DIR)'
6175239c45eb add missing npp.mk file
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 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
23 endef