aboutsummaryrefslogtreecommitdiff
path: root/development/ne
diff options
context:
space:
mode:
authorZhu Qun-Ying <zhu.qunying@gmail.com>2024-11-30 09:54:25 +0900
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2024-11-30 13:51:33 +0700
commit43671cbce3f1c26229aa1b4e766cc5dab0580898 (patch)
treeca514c3b715a126e14f4b823de747216a302f8cb /development/ne
parent56b0d2869c7276890588802331cb8244d71b6098 (diff)
development/ne: Added (nice editor).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/ne')
-rw-r--r--development/ne/README6
-rw-r--r--development/ne/doinst.sh3
-rw-r--r--development/ne/douninst.sh3
-rw-r--r--development/ne/ne.SlackBuild87
-rw-r--r--development/ne/ne.info10
-rw-r--r--development/ne/slack-desc19
6 files changed, 128 insertions, 0 deletions
diff --git a/development/ne/README b/development/ne/README
new file mode 100644
index 0000000000..d0188a7b90
--- /dev/null
+++ b/development/ne/README
@@ -0,0 +1,6 @@
+ne is a free (GPL'd) text editor based on the POSIX standard that
+runs on almost any UN*X machine. ne is easy to use for the beginner,
+but powerful and fully configurable for the wizard, and most sparing
+in its resource usage. If you have the resources and the patience to
+use emacs or the right mental twist to use vi then probably ne is
+not for you.
diff --git a/development/ne/doinst.sh b/development/ne/doinst.sh
new file mode 100644
index 0000000000..edf720b054
--- /dev/null
+++ b/development/ne/doinst.sh
@@ -0,0 +1,3 @@
+if [ -x /usr/bin/install-info ]; then
+ /usr/bin/install-info --info-dir=usr/info usr/info/ne.info.gz 2> /dev/null
+fi
diff --git a/development/ne/douninst.sh b/development/ne/douninst.sh
new file mode 100644
index 0000000000..4a23bd1ce8
--- /dev/null
+++ b/development/ne/douninst.sh
@@ -0,0 +1,3 @@
+if [ -x /usr/sbin/update-info-dir ]; then
+ /usr/sbin/update-info-dir &> /dev/null
+fi
diff --git a/development/ne/ne.SlackBuild b/development/ne/ne.SlackBuild
new file mode 100644
index 0000000000..28e7f1cc48
--- /dev/null
+++ b/development/ne/ne.SlackBuild
@@ -0,0 +1,87 @@
+#!/bin/bash
+
+# Slackware build script for ne
+
+# Copyright 2024 Zhu Qun-Ying <zhu.qunying@mgail.com>
+# Copyright 2012-2015 Fridrich von Stauffenberg <cancellor2@gmail.com>
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PRGNAM=ne
+VERSION=${VERSION:-3.3.3}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i586 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
+cd $PRGNAM-$VERSION
+chown -R root:root .
+
+sed -i "s@share/doc/$PRGNAM@doc/$PRGNAM-$VERSION@g;
+ s@share/man@man@g;
+ s@share/info@info@g" makefile
+
+make -j 1 PREFIX=/usr
+make -j 1 install DESTDIR=$PKG PREFIX=/usr
+
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+
+find $PKG/usr/man -type f -exec gzip -9 {} \;
+# man page file permission not correct, chanage it here
+chmod 644 $PKG/usr/man/man1/*
+
+rm -f $PKG/usr/info/dir
+gzip -9 $PKG/usr/info/*.info*
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+mkdir -p $PKG/install
+cp $CWD/doinst.sh $PKG/install/
+cp $CWD/douninst.sh $PKG/install/
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/development/ne/ne.info b/development/ne/ne.info
new file mode 100644
index 0000000000..64b12f3b5e
--- /dev/null
+++ b/development/ne/ne.info
@@ -0,0 +1,10 @@
+PRGNAM="ne"
+VERSION="3.3.3"
+HOMEPAGE="https://ne.di.unimi.it"
+DOWNLOAD="https://github.com/vigna/ne/archive/3.3.3/ne-3.3.3.tar.gz"
+MD5SUM="fd02e3f83d014ed8a6c3c842f0bc4009"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES=""
+MAINTAINER="Zhu Qun-Ying"
+EMAIL="zhu.qunying@gmail.com"
diff --git a/development/ne/slack-desc b/development/ne/slack-desc
new file mode 100644
index 0000000000..762e2d270b
--- /dev/null
+++ b/development/ne/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.
+# Line up the first '|' above the ':' following the base package name, and
+# the '|' on the right side marks the last column you can put a character in.
+# You must make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+ne: ne (Nice Editor)
+ne:
+ne: ne is a free (GPL'd) text editor based on the POSIX standard that
+ne: runs on almost any UN*X machine. ne is easy to use for the beginner,
+ne: but powerful and fully configurable for the wizard, and most sparing
+ne: in its resource usage. If you have the resources and the patience to
+ne: use emacs or the right mental twist to use vi then probably ne is
+ne: not for you.
+ne:
+ne: Homepage: http://ne.di.unimi.it
+ne: