mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
system/cpmtools: Updated for version 2.21.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
ae6327d72d
commit
453c030f3e
3 changed files with 16 additions and 22 deletions
|
@ -1,4 +1,4 @@
|
|||
cpmtools (access CP/M filesystem images or floppies)
|
||||
|
||||
cpmtools accesses CP/M file systems. It's similar to the well-known
|
||||
mtools package (which accesses MSDOS file systems).
|
||||
mtools package (which accesses MS-DOS file systems).
|
||||
|
|
|
@ -6,8 +6,13 @@
|
|||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
# 20201102 bkw:
|
||||
# - Updated for v2.21. Can't build older versions, sorry.
|
||||
# - Switch to freebsd distfile source, as upstream vanishes the old
|
||||
# source immediately upon a new release.
|
||||
|
||||
PRGNAM=cpmtools
|
||||
VERSION=${VERSION:-2.20}
|
||||
VERSION=${VERSION:-2.21}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -47,11 +52,8 @@ rm -rf $PRGNAM-$VERSION
|
|||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
||||
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
|
@ -64,19 +66,11 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
# make install fails to create these. Grr.
|
||||
mkdir -p $PKG/usr/bin $PKG/usr/man/man1 $PKG/usr/man/man5 $PKG/usr/share
|
||||
# 'make install' fails to create this:
|
||||
mkdir -p $PKG/usr/share/diskdefs
|
||||
|
||||
# really old configure script, no DESTDIR support. "autoreconf -fi" fails
|
||||
# to build a new configure script, too.
|
||||
make install prefix=$PKG/usr exec_prefix=$PKG/usr MANDIR=$PKG/usr/man
|
||||
|
||||
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 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
make install DESTDIR=$PKG # binaries already stripped, yay!
|
||||
gzip $PKG/usr/man/man?/*.?
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README NEWS COPYING $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="cpmtools"
|
||||
VERSION="2.20"
|
||||
VERSION="2.21"
|
||||
HOMEPAGE="http://www.moria.de/~michael/cpmtools/"
|
||||
DOWNLOAD="http://www.moria.de/~michael/cpmtools/files/cpmtools-2.20.tar.gz"
|
||||
MD5SUM="675dd715c93469330833c8b67abadcda"
|
||||
DOWNLOAD="http://distcache.freebsd.org/ports-distfiles/cpmtools-2.21.tar.gz"
|
||||
MD5SUM="b250cbcc09a0ca6fbdf850653f5f3e1f"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue