blob: 0e733a762e51fa153cbcfbd95fb84db2d64a60bf (
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
|
# Maintainer: Rubin Simons <me@rubin55.org>
pkgname=rusty-psn-bin
pkgver=0.5.8
pkgrel=1
pkgdesc="A GUI/CLI tool for downloading PS3 and PS4 game updates"
provides=("rustypsn")
arch=('x86_64')
url="https://github.com/RainbowCookie32/rusty-psn"
license=("Apache")
source=(
"${pkgname}-cli-${pkgver}.zip::https://github.com/RainbowCookie32/rusty-psn/releases/download/v${pkgver}/rusty-psn-cli-linux.zip"
"${pkgname}-gui-${pkgver}.zip::https://github.com/RainbowCookie32/rusty-psn/releases/download/v${pkgver}/rusty-psn-egui-linux.zip"
"rusty-psn.desktop"
"playstation-store.svg"
)
sha256sums=('f6be43bb33fa918dbaf1f10766a42e3a8841c2712eba238f06c19f8191177cf7'
'bb9e44ea82804f4b3d7485e408a7eabe9dc4a4dc40eeb4af9ba7978b6827f6c8'
'2cb6715bb0cf3646091369385e285c92a2573f1602580f60a51d5c0ea8e638a5'
'4c6f59e5d15a93b76fc1a90ca4f8283193a870627a958eff62cda952474d089b')
options=("!strip")
package() {
install -o root -g root -m 755 -d "${pkgdir}/usr/bin"
install -o root -g root -m 755 -d "${pkgdir}/usr/share/applications"
install -o root -g root -m 755 -d "${pkgdir}/usr/share/pixmaps"
unzip "${pkgname}-cli-${pkgver}.zip" -d "${pkgdir}/usr/bin"
chmod 0755 "${pkgdir}/usr/bin/rusty-psn"
install -o root -g root -m 755 "${srcdir}/rusty-psn" "${pkgdir}/usr/bin/rusty-psn-gui"
install -o root -g root -m 644 "${srcdir}/rusty-psn.desktop" "${pkgdir}/usr/share/applications/rusty-psn.desktop"
install -o root -g root -m 644 "${srcdir}/playstation-store.svg" "${pkgdir}/usr/share/pixmaps/playstation-store.svg"
}
|