mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/sakura: Initial import
This commit is contained in:
parent
fd91bce7f7
commit
1b81462a76
6 changed files with 90 additions and 0 deletions
9
system/sakura/README
Normal file
9
system/sakura/README
Normal file
|
@ -0,0 +1,9 @@
|
|||
sakura is a terminal emulator based on GTK and VTE. It's a terminal emulator
|
||||
with few dependencies, so you don't need a full GNOME desktop installed to
|
||||
have a decent terminal emulator. As far as i know, the only terminal emulators
|
||||
based on VTE are gnome-terminal, XFCE Terminal, and a small sample program
|
||||
included in the vte sources. Sakura differences from the last one is that it
|
||||
uses a notebook to provide several terminals in one window and adds a
|
||||
contextual menu with some basic options - no more no less.
|
||||
|
||||
This requires vte, which is also available at SlackBuilds.org
|
3
system/sakura/doinst.sh
Normal file
3
system/sakura/doinst.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
if [ -x usr/bin/update-desktop-database ]; then
|
||||
usr/bin/update-desktop-database &> /dev/null
|
||||
fi
|
49
system/sakura/sakura.SlackBuild
Normal file
49
system/sakura/sakura.SlackBuild
Normal file
|
@ -0,0 +1,49 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for sakura
|
||||
# Written by Erik Hanson erik@slackbuilds.org
|
||||
|
||||
PRGNAM=sakura
|
||||
VERSION=1.1.5
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
# These are ignored, but I'm leaving them here in case
|
||||
# someone with some sed skills wants to wedge SLKCFLAGS
|
||||
# into the Makefile.in later.
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
# MOBS: My Own Build System (clever, eh?)
|
||||
./0 --prefix=/usr || exit 1
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
strip --strip-unneeded $PKG/usr/bin/sakura
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install $PKG/usr/share/applications
|
||||
cp -a AUTHORS Changelog GPL INSTALL $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
10
system/sakura/sakura.desktop
Normal file
10
system/sakura/sakura.desktop
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Sakura Terminal
|
||||
Comment=Use the command line
|
||||
TryExec=sakura
|
||||
Exec=sakura
|
||||
Icon=/usr/share/pixmaps/terminal-tango.png
|
||||
Type=Application
|
||||
Categories=GTK;Application;Utility;TerminalEmulator;
|
||||
StartupNotify=true
|
8
system/sakura/sakura.info
Normal file
8
system/sakura/sakura.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="sakura"
|
||||
VERSION="1.1.5"
|
||||
HOMEPAGE="http://pleyades.net/david/sakura.php"
|
||||
DOWNLOAD="http://pleyades.net/david/projects/sakura/sakura-1.1.5.tar.bz2"
|
||||
MD5SUM="edb0f6f4a7abb630890949886a94ac73"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="rworkman"
|
11
system/sakura/slack-desc
Normal file
11
system/sakura/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
sakura: sakure - a terminal emulator
|
||||
sakura:
|
||||
sakura: sakura is a terminal emulator based on GTK and VTE. It's a terminal
|
||||
sakura: emulator with few dependencies, so you don't need a full GNOME desktop
|
||||
sakura: installed to have a decent terminal emulator. Sakura uses a notebook
|
||||
sakura: to provide several terminals in one window and adds a contextual menu
|
||||
sakura: with some basic options. No more no less.
|
||||
sakura:
|
||||
sakura: http://pleyades.net/david/sakura.php
|
||||
sakura:
|
||||
sakura:
|
Loading…
Reference in a new issue