annotate src/npp.mk @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +0200
parents f04f1757c7fa
children 4b4c14fd4b35
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 :=
5873
f04f1757c7fa * src/npp.mk: update to v8.1.4
John Donoghue <john.donoghue@ieee.org>
parents: 5850
diff changeset
6 $(PKG)_VERSION := 8.1.4
f04f1757c7fa * src/npp.mk: update to v8.1.4
John Donoghue <john.donoghue@ieee.org>
parents: 5850
diff changeset
7 $(PKG)_CHECKSUM := 236a7e9893ce8b545af0de3f3415122ff78dce18
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