# HG changeset patch # User John W. Eaton # Date 1359066814 18000 # Node ID 1955438b24dc41c437752e55c20c19d882869e85 # Parent b804e33fe98418f6d1e06c80499c22d29524eb93 get notepad++ diff -r b804e33fe984 -r 1955438b24dc Makefile --- a/Makefile Mon Jan 14 17:50:51 2013 -0500 +++ b/Makefile Thu Jan 24 17:33:34 2013 -0500 @@ -57,6 +57,8 @@ MSYS_BASE_DIR := $(PREFIX)/../msys-base MSYS_BASE_PACKAGES := $(addprefix msys-,bash coreutils diffutils file findutils gawk grep gzip less libiconv libintl libmagic make msys-core regex sed tar termcap) +NOTEPAD_BASE_DIR := $(PREFIX)/../notepad++ + OCTAVE_FORGE_BASE_URL := 'http://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases' OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control) diff -r b804e33fe984 -r 1955438b24dc index.html --- a/index.html Mon Jan 14 17:50:51 2013 -0500 +++ b/index.html Thu Jan 24 17:33:34 2013 -0500 @@ -1764,6 +1764,11 @@ NSIS + nsis + 6.2.3 + Notepad++ + + ocaml 4.00.0 ocaml diff -r b804e33fe984 -r 1955438b24dc mk-dist --- a/mk-dist Mon Jan 14 17:50:51 2013 -0500 +++ b/mk-dist Thu Jan 24 17:33:34 2013 -0500 @@ -42,7 +42,7 @@ mkdir -p $OCTAVE_DIST_DIR echo "building octave and dependencies..." -make $OCTAVE_TARGET msys-base native-gcc native-binutils octave-forge-packages JOBS=$jobs +make $OCTAVE_TARGET msys-base native-gcc native-binutils octave-forge-packages npp JOBS=$jobs echo "generating lists of files to exclude..." @@ -75,6 +75,11 @@ cd $TOPDIR/msys-base tar -c -h -f - . | ( cd $OCTAVE_DIST_DIR ; tar xpf - ) +echo " notepad++..." +cd $TOPDIR +tar -c -h -f - notepad++ | ( cd $OCTAVE_DIST_DIR ; tar xpf - ) +cp $TOPDIR/build_packages.m $OCTAVE_DIST_DIR/src + echo "making all files writable by user..." chmod -R u+w $OCTAVE_DIST_DIR