view src/npp.mk @ 6519:77267b0c5bc8 release

octave: Update version numbers after merge in Octave repository. * src/default-octave.mk: Update version number to 9.0.0. * src/stable-octave.mk: Update version number to 8.0.1. Merge changes in build rule from default-octave.mk.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 16 Nov 2022 08:25:43 +0100
parents befc322e89fd
children 4dc9eef8fbe9
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := npp
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 8.1.9.3
$(PKG)_CHECKSUM := c864455e096ba9e549eeb16c992bcd3f1f58a047
$(PKG)_SUBDIR   := 
$(PKG)_FILE     := $(PKG).$($(PKG)_VERSION).portable.zip
$(PKG)_URL      := https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS     :=

define $(PKG)_UPDATE
    $(WGET) -q -O- 'https://notepad-plus-plus.org/downloads/' | \
    $(GREP) 'Current' | \
    $(SED) -n 's|.*/v\([^/]*\).*|\1|p' | \
    tail -1
endef

define $(PKG)_BUILD
    mkdir -p '$(NOTEPAD_BASE_DIR)'
    cd '$(1)' && tar cf - . | ( cd '$(NOTEPAD_BASE_DIR)'; tar xpf - )
endef