system/qemulator: Initial import
This commit is contained in:
parent
9f425370dc
commit
3a93d214a7
|
@ -0,0 +1,14 @@
|
|||
Qemulator is a graphical emulation suite for the qemu virtual-engine,
|
||||
written in python with gtk and glade.
|
||||
|
||||
Finally Qemulator will try to support all engines and options for all
|
||||
common platforms. All currently not supported options can still be used
|
||||
by adding them to the available commandline.
|
||||
|
||||
Qemulator is licenced under the terms of the GPL (General Public Licence).
|
||||
|
||||
Required dep: PyGTK (which requires pycairo and pygobject), available at
|
||||
slackbuilds.org
|
||||
Optional dep: Python-Gnome-extras (for tray functionality, else tray icon
|
||||
and all it's enhancements will be disabled)
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
if [ -x usr/bin/update-desktop-database ]; then
|
||||
usr/bin/update-desktop-database &> /dev/null
|
||||
fi
|
|
@ -0,0 +1,44 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Qemulator
|
||||
# Written by Erik Hanson erik@slackbuilds.org
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
set -eu
|
||||
|
||||
PRGNAM=Qemulator
|
||||
PKGNAM=qemulator
|
||||
VERSION=0.4.5
|
||||
ARCH=${ARCH:-noarch}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
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 .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install
|
||||
cp -a usr/local/* $PKG/usr
|
||||
cp -a INSTALL INSTALL.DE LICENCE README TRANSLATION $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PKGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PKGNAM.SlackBuild
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG/usr/lib/qemulator
|
||||
chmod 0755 qml_network.py qml_ptsmanager.py qml_controlmon.py qemulator.py
|
||||
|
||||
sed -i 's|Icon=qemulator.svg|Icon=/usr/share/pixmaps/qemulator.svg|' \
|
||||
$PKG/usr/share/applications/qemulator.desktop
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PKGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="qemulator"
|
||||
VERSION="0.4.5"
|
||||
HOMEPAGE="http://qemulator.createweb.de/"
|
||||
DOWNLOAD="http://qemulator.createweb.de/downloads/Qemulator-0.4.5.tar.gz"
|
||||
MD5SUM="a9ea901b8e1a9c5d5087220bd8b4f3ed"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="BP{k}"
|
|
@ -0,0 +1,11 @@
|
|||
qemulator: Qemulator - a graphical emulation suite for the qemu virtual-engine
|
||||
qemulator:
|
||||
qemulator: Qemulator is a graphical emulation suite for the qemu virtual
|
||||
qemulator: engine, written in python with gtk and glade.
|
||||
qemulator: Finally Qemulator will try to support all engines and options for
|
||||
qemulator: all common platforms. All currently not supported options can still
|
||||
qemulator: be used by adding them to the available commandline.
|
||||
qemulator:
|
||||
qemulator:
|
||||
qemulator: http://qemulator.createweb.de/
|
||||
qemulator:
|
Loading…
Reference in New Issue