view src/npp.mk @ 6061:51ba43646a95

* src/geos.mk: update to v3.10.2
author John Donoghue <john.donoghue@ieee.org>
date Wed, 19 Jan 2022 12:54:05 -0500
parents 4dc9eef8fbe9
children 4248c3e4e594
line wrap: on
line source

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

PKG             := npp
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 8.2
$(PKG)_CHECKSUM := de18f71ed5ce2370a016cc2c9bbd120d09ccd18e
$(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