blob: 56e7814f40aa6af92ed284fd90df49985bc9c0ba (
plain) (
tree)
|
|
# Contributor: Horst Burkhardt <horst@adelielinux.org>
# Maintainer: Horst Burkhardt <horst@adelielinux.org>
pkgname=minivmac
pkgver=3.5.8
pkgrel=1
pkgdesc="a simple and accurate emulator of early Macintosh computers"
url="http://www.gryphel.com/c/minivmac/"
arch="all !s390x"
options="!check" # minivmac does not ship a test suite
license="GPL-2.0-only"
depends=""
makedepends="libx11-dev libxcb-dev libxau-dev libbsd-dev libxdmcp-dev"
source="http://oddball.tech/code/emu_pkg/$pkgname-$pkgver.tar.xz"
build() {
cd "$builddir"
CARCH=$CARCH ./configure
cd "$builddir"/mnvmplus
make -j1
cd "$builddir"/mnvmII
make -j1
}
package() {
install -D -m755 "$builddir"/mnvmplus/minivmac "$pkgdir"/usr/bin/minivmac
install -m755 "$builddir"/mnvmII/minivmac "$pkgdir"/usr/bin/minivmacII
}
sha512sums="ff28266641dd37df74c84c16c8bf32282729d55ae6512d4a98abf92ba40692f9fc107b501f072755ba0f8a0322d4f755915d9be74a407ce89af94bfd24d11043 minivmac-3.5.8.tar.xz"
|