blob: ecd51b5b8821439f711505dc83fe6b2eec3f8add (
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
35
36
37
38
39
40
41
42
43
|
# Maintainer: jessienab <git at nabein dot me>
pkgname=redumper-gui-bin
epoch=
pkgver=1.0.4
pkgrel=1
pkgdesc='A cross-platform digital fidget spinner and GUI for redumper.'
arch=(x86_64)
url='https://github.com/Deterous/Redumper-GUI'
license=('GPL-3.0')
# The GUI is pre-packaged with a supported and recommended version of redumper therefore, this must be present on the system. Generally this follows redumper git upstream builds.
# The redumper-bin AUR package is only updated when Media Preservation Frontend (MPF) marks a redumper version as "safe", or based on "safe" Redump.org version
provides=('redumper')
conflicts=("redumper-gui"
"redumper-bin"
"redumper")
source=(
"https://github.com/Deterous/Redumper-GUI/releases/download/v${pkgver}/Redumper-GUI-Linux-x64.tar.gz"
"https://raw.githubusercontent.com/Deterous/Redumper-GUI/refs/heads/main/LICENSE"
"https://raw.githubusercontent.com/Deterous/Redumper-GUI/refs/heads/main/README.md"
)
sha256sums=('c9b086d15b75a5068707fb52ef3ab2988776c61e93bf31df25aa7fb45fc318d0'
'SKIP'
'SKIP')
package() {
# install binary
install -Dm 755 ${srcdir}/redumper-gui ${pkgdir}/usr/bin/redumper-gui
install -Dm 755 ${srcdir}/redumper ${pkgdir}/usr/bin/redumper
# install documentation
install -Dm 644 ${srcdir}/README.md ${pkgdir}/usr/local/share/doc/${_prgname}/README.md
# install license
install -Dm 644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/${_prgname}/LICENSE
}
|