blob: 5dc5224f963712e695cdaba6ef180968f15a9a5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer: Alexander Aleschenko <alex.aleschenko@gmail.com>
pkgname=emu80-git
_pkgname=emu80
_commit=3f08704
_pkgver=4.0.513
pkgver=${_pkgver}.${_commit}
pkgrel=1
pkgdesc="Emulator for bunch of Soviet PCs. Git version"
arch=('x86_64')
url="https://emu80.org/"
license=("GPL3")
depends=("emu80-base" "qt6-base" "qt6-multimedia")
makedepends=("base-devel")
source=("${pkgname}::git+https://github.com/vpyk/emu80v4.git#commit=${_commit}" "shortcut.desktop")
sha256sums=("SKIP" "7206828b1279e8387454da6f31bf74ff7319c89f79a6abc396508a6f263db59b")
build() {
cd "${pkgname}"
qmake6 src/Emu80qt.pro
make
}
package() {
cd "${pkgname}"
destination=${pkgdir}/opt/${_pkgname}
install -d -m755 ${destination}
install -m0755 Emu80qt ${destination}/${pkgname}
install -d -m755 ${pkgdir}/usr/bin
ln -s "/opt/${_pkgname}/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
install -D -m644 "${srcdir}/shortcut.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
}
|