annotate src/npp.mk @ 5997:b8d1edf82ec2 release

Notepad++: Update to version 8.1.9.2. * src/npp.mk: Version 8.1.9 was retracted upstream and the corresponding binaries have been removed from their server. Update version and checksum.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 02 Dec 2021 09:46:19 +0100
parents 001129ddf0a0
children befc322e89fd
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 :=
5997
b8d1edf82ec2 Notepad++: Update to version 8.1.9.2.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5934
diff changeset
6 $(PKG)_VERSION := 8.1.9.2
b8d1edf82ec2 Notepad++: Update to version 8.1.9.2.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5934
diff changeset
7 $(PKG)_CHECKSUM := 1d479b151a4b2f769a6d822c85b8e2b7bc3d8bc5
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