mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
765 B
Bash
26 lines
765 B
Bash
|
# $Id: PKGBUILD 1071 2009-08-12 20:14:05Z dgriffiths $
|
||
|
# Maintainer: Alexander Fehr <pizzapunk gmail com>
|
||
|
|
||
|
pkgname=qemulator
|
||
|
pkgver=0.5
|
||
|
pkgrel=3
|
||
|
pkgdesc="Comfortable GUI for the qemu virtual engine"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://qemulator.createweb.de/"
|
||
|
license=('GPL')
|
||
|
depends=('qemu' 'pygtk' 'xdg-utils')
|
||
|
install=$pkgname.install
|
||
|
source=(http://qemulator.createweb.de/downloads/Qemulator-$pkgver.tar.gz)
|
||
|
md5sums=('a2ab585f2a987b5fafa5f76b785d6c1a')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/Qemulator-$pkgver
|
||
|
mkdir -p $startdir/pkg/usr
|
||
|
cp -a usr/local/* $startdir/pkg/usr
|
||
|
|
||
|
# Remove extra icons
|
||
|
rm -f $startdir/pkg/usr/share/qemulator/icons/*
|
||
|
install -m644 usr/local/share/qemulator/icons/default.png \
|
||
|
$startdir/pkg/usr/share/qemulator/icons/default.png
|
||
|
}
|