mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
683 B
Bash
20 lines
683 B
Bash
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
|
|
# Contributor: cs-cam <me@camdaniel.com>
|
|
|
|
pkgname=qemu-launcher
|
|
pkgver=1.7.4
|
|
pkgrel=1
|
|
pkgdesc="GNOME/Gtk front-end for the Qemu x86 PC emulator"
|
|
url="http://emeitner.f2o.org/qemu_launcher"
|
|
license=('GPL')
|
|
arch=('i686' 'x86_64')
|
|
source=(http://download.gna.org/qemulaunch/1.7.x/${pkgname}_$pkgver.tar.gz)
|
|
depends=('qemu' 'gtk2-perl' 'glade-perl' 'perl-locale-gettext')
|
|
makedepends=('libxml2')
|
|
md5sums=('bd71fd543bd2723c7ea54de81f7ccabf')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
make PREFIX=/usr DESTDIR=$startdir/pkg install
|
|
ln -s qemu-launcher-32x32.xpm $startdir/pkg/usr/share/pixmaps/qemu-launcher.xpm
|
|
}
|