diff options
author | Horst G. Burkhardt <horst@adelielinux.org> | 2018-03-22 22:54:11 +0000 |
---|---|---|
committer | Horst G. Burkhardt <horst@adelielinux.org> | 2018-03-22 22:54:11 +0000 |
commit | f1566b9fe589650d72945774ea98e7b2ab00d1b3 (patch) | |
tree | bc1f123422f15941dc87d2bd3f32adfdfc7a530f /user | |
parent | 162bdd04218cf0209ff9a00151f27541260b26c5 (diff) | |
download | packages-f1566b9fe589650d72945774ea98e7b2ab00d1b3.tar.gz packages-f1566b9fe589650d72945774ea98e7b2ab00d1b3.tar.bz2 packages-f1566b9fe589650d72945774ea98e7b2ab00d1b3.tar.xz packages-f1566b9fe589650d72945774ea98e7b2ab00d1b3.zip |
user/minivmac: fix glaring errors in APKBUILD
Diffstat (limited to 'user')
-rw-r--r-- | user/minivmac/APKBUILD | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/user/minivmac/APKBUILD b/user/minivmac/APKBUILD index 7fb65aba6..7deb5ef39 100644 --- a/user/minivmac/APKBUILD +++ b/user/minivmac/APKBUILD @@ -3,28 +3,27 @@ pkgname=minivmac pkgver=3.5.8 pkgrel=0 -pkgdesc="minivmac is a simple and accurate emulator of early Macintosh computers" +pkgdesc="a simple and accurate emulator of early Macintosh computers" url="http://www.gryphel.com/c/minivmac/" -arch="x86 pmmx i528 x86_64 ppc ppc64 ppc64le aarch64 armhf armel armv7" -license="GPL-2.0" -depends="libxcb libx11 libxau xorg-server libbsd libxdmcp" -makedepends="libx11-dev libxcb-dev libxau-dev libbsd-dev libxdmcp-dev xz" +arch="all !s390x" +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" builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" ./configure - cd /mnvmplus + cd "$builddir"/mnvmplus make -j1 - cd ../mnvmII + cd "$builddir"/mnvmII make -j1 } package() { - cd "$builddir" - cp -v mnvmplus/minivmac "$pkgdir"/usr/bin/minivmac - cp -v mnvmII/minivmac "$pkgdir"/usr/bin/minivmacII + install -D -m755 "$builddir"/mnvmplus/minivmac "$pkgdir"/usr/bin/minivmac + install -m755 "$builddir"/mnvmII/minivmac "$pkgdir"/usr/bin/minivmacII } -sha512sums="b01f41d80f950b8073744c1ea9885d5db689bced1d345a6880e86cb5a5acf79e5cbb19ea94601fdef421b91a7736125ed1fb5d90133b5353a3c203933f314f40 minivmac-3.5.8.tar.xz"
\ No newline at end of file +sha512sums="b01f41d80f950b8073744c1ea9885d5db689bced1d345a6880e86cb5a5acf79e5cbb19ea94601fdef421b91a7736125ed1fb5d90133b5353a3c203933f314f40 minivmac-3.5.8.tar.xz" |