changeset 2968:6175239c45eb

add missing npp.mk file
author John W. Eaton <jwe@octave.org>
date Thu, 24 Jan 2013 18:18:29 -0500
parents eeb7a7067d85
children a7db3bcc5d0e
files src/npp.mk
diffstat 1 files changed, 20 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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