mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
system/cutecom: Added (graphical serial terminal)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
5c6b7341c3
commit
09bf86d362
5 changed files with 131 additions and 0 deletions
1
system/cutecom/README
Normal file
1
system/cutecom/README
Normal file
|
@ -0,0 +1 @@
|
|||
CuteCom is a graphical serial terminal like minicom.
|
92
system/cutecom/cutecom.SlackBuild
Normal file
92
system/cutecom/cutecom.SlackBuild
Normal file
|
@ -0,0 +1,92 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for cutecom
|
||||
|
||||
# Written by Vincent Batts, vbatts@hashbangbash.com
|
||||
|
||||
PRGNAM=cutecom
|
||||
VERSION=${VERSION:-0.22.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
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 .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake \
|
||||
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DKDECONFIG_EXECUTABLE=/usr/bin/kde4-config \
|
||||
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||
-DMAN_INSTALL_DIR=/usr/man \
|
||||
-DCMAKE_BUILD_TYPE=Release ..
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
cd ..
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
# MAN_INSTALL_DIR is ignored, I guess
|
||||
mv $PKG/usr/share/man $PKG/usr/man
|
||||
|
||||
# The dotdesktop file installed is in the wrong place and is bad, so we'll
|
||||
# just do our own based on that one...
|
||||
rm -rf $PKG/usr/share/applnk
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
cat $CWD/cutecom.desktop > $PKG/usr/share/applications/cutecom.desktop
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
COPYING README Changelog TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $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:-tgz}
|
9
system/cutecom/cutecom.desktop
Normal file
9
system/cutecom/cutecom.desktop
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Name=CuteCom
|
||||
MimeType=
|
||||
GenericName=Serial Terminal
|
||||
Exec=cutecom
|
||||
Icon=openterm
|
||||
Type=Application
|
||||
Terminal=false
|
||||
X-KDE-StartupNotify=false
|
10
system/cutecom/cutecom.info
Normal file
10
system/cutecom/cutecom.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="cutecom"
|
||||
VERSION="0.22.0"
|
||||
HOMEPAGE="http://cutecom.sourceforge.net/"
|
||||
DOWNLOAD="http://cutecom.sourceforge.net/cutecom-0.22.0.tar.gz"
|
||||
MD5SUM="dd85ceecf5a60b4d9e4b21a338920561"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Vincent Batts"
|
||||
EMAIL="vbatts@hashbangbash.com"
|
||||
APPROVED="rworkman"
|
19
system/cutecom/slack-desc
Normal file
19
system/cutecom/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
cutecom: cutecom (graphical serial terminal)
|
||||
cutecom:
|
||||
cutecom: CuteCom is a graphical serial terminal like minicom.
|
||||
cutecom:
|
||||
cutecom: http://cutecom.sourceforge.net/
|
||||
cutecom:
|
||||
cutecom:
|
||||
cutecom:
|
||||
cutecom:
|
||||
cutecom:
|
||||
cutecom:
|
Loading…
Reference in a new issue