# HG changeset patch # User John W. Eaton # Date 1359069509 18000 # Node ID 6175239c45ebf4e2939245820776b12610699d64 # Parent eeb7a7067d856c9dce8e42d06f823463b555e2f3 add missing npp.mk file diff -r eeb7a7067d85 -r 6175239c45eb src/npp.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/npp.mk Thu Jan 24 18:18:29 2013 -0500 @@ -0,0 +1,20 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := npp +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := e246ebb89c10b71ed483b866ea90385a661092e6 +$(PKG)_SUBDIR := unicode +$(PKG)_FILE := $(PKG).$($(PKG)_VERSION).bin.zip +$(PKG)_URL := http://download.tuxfamily.org/notepadplus/$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_DEPS := + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package Notepad++.' >&2; + echo $($(PKG)_VERSION) +endef + +define $(PKG)_BUILD + mkdir -p '$(NOTEPAD_BASE_DIR)' + cd '$(1)' && tar cf - . | ( cd '$(NOTEPAD_BASE_DIR)'; tar xpf - ) +endef