blob: a002d45e3b583029498e66c273650605a844d531 (
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
|
# Maintainer: Alexander Aleschenko <alex.aleschenko@gmail.com>
pkgname=emu80-base
_pkgname=emu80
pkgver=4.0.501
pkgrel=1
pkgdesc="Emulator for bunch of Soviet PCs. Assets package"
arch=('x86_64')
url="https://emu80.org/"
license=("GPL3")
conflicts=("emu80-qt<4.0.498")
source=("https://github.com/vpyk/emu80v4/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=("e6c2f7477ba0a407a4f8fa1e63c8975a70634f0ac3b2bfe5aa6808ea1da197d8")
package() {
cd "emu80v4-${pkgver}"
destination=${pkgdir}/opt/${_pkgname}
install -d -m755 ${destination}
cp -r dist/* ${destination}
cp COPYING.txt ${destination}
cp whatsnew.txt ${destination}
cp doc/* ${destination}
install -D -m644 "src/qt/icons/emu80.png" "${pkgdir}/usr/share/pixmaps/emu80.png"
}
|