summaryrefslogtreecommitdiffstats
path: root/archive
diff options
context:
space:
mode:
authorIsmael Luceno2021-09-18 19:20:14 +0200
committerIsmael Luceno2021-09-18 21:21:09 +0200
commite20c7eef93bfc4df9561293810f6856c5970aa1b (patch)
tree05af94fd6669439f58138491f7e1ce4dde2f8d64 /archive
parent1a063d311735c6ba5d7c1a0da68c00acb5dc4dde (diff)
ncompress: Install main binary without suffix
There's no conflict with gzip. Keep a symlink for compatibility.
Diffstat (limited to 'archive')
-rwxr-xr-xarchive/ncompress/DETAILS1
-rw-r--r--archive/ncompress/HISTORY2
-rwxr-xr-xarchive/ncompress/INSTALL6
3 files changed, 6 insertions, 3 deletions
diff --git a/archive/ncompress/DETAILS b/archive/ncompress/DETAILS
index 32afb580fc..71f30b50ba 100755
--- a/archive/ncompress/DETAILS
+++ b/archive/ncompress/DETAILS
@@ -1,5 +1,6 @@
SPELL=ncompress
VERSION=5.0
+ PATCHLEVEL=1
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=https://github.com/vapier/$SPELL/archive/refs/tags/v$VERSION.tar.gz
diff --git a/archive/ncompress/HISTORY b/archive/ncompress/HISTORY
index 10b9908356..63682a6480 100644
--- a/archive/ncompress/HISTORY
+++ b/archive/ncompress/HISTORY
@@ -1,8 +1,10 @@
2021-09-18 Ismael Luceno <ismael@sourcemage.org>
* PRE_BUILD, ncompress-gcc34.patch: removed, no longer needed
* BUILD: simplified
+ * INSTALL: switched to installing main binary without .real suffix (no conflict)
* DETAILS: updated spell to 5.0
updated WEB_SITE
+ PATCHLEVEL++
2006-10-26 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
* INSTALL: use TRACK_ROOT not INSTALL_ROOT when linking #9163
diff --git a/archive/ncompress/INSTALL b/archive/ncompress/INSTALL
index 2cc57e4559..f7a1461b41 100755
--- a/archive/ncompress/INSTALL
+++ b/archive/ncompress/INSTALL
@@ -1,9 +1,9 @@
-cp -f compress $INSTALL_ROOT/usr/bin/compress.real &&
+cp -f compress $INSTALL_ROOT/usr/bin/compress &&
cp -f zcmp $INSTALL_ROOT/usr/bin/zcmp.real &&
cp -f zdiff $INSTALL_ROOT/usr/bin/zdiff.real &&
cp -f zmore $INSTALL_ROOT/usr/bin/zmore.real &&
cp -f compress.1 $INSTALL_ROOT/usr/man/man1/compress.real.1 &&
cp -f zcmp.1 $INSTALL_ROOT/usr/man/man1/zcmp.real.1 &&
cp -f zmore.1 $INSTALL_ROOT/usr/man/man1/zmore.real.1 &&
-ln -sf $TRACK_ROOT/usr/bin/compress.real $INSTALL_ROOT/usr/bin/uncompress.real
-
+ln -sf compress $INSTALL_ROOT/usr/bin/compress.real &&
+ln -sf compress $INSTALL_ROOT/usr/bin/uncompress.real