blob: 12e98eb4b2433737435a35967327f71925cd62df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Rubin Simons <me@rubin55.org>
pkgname=pupdate-bin
pkgver=5.3.1
pkgrel=1
pkgdesc=" Pupdate, a thing for updating your Analogue Pocket, binary release"
provides=("pupdate")
arch=('x86_64')
url="https://mattpannella.github.io/pupdate"
license=("Apache")
source=(
"${pkgname}-${pkgver}.zip::https://github.com/mattpannella/pupdate/releases/download/${pkgver}/pupdate_linux.zip"
)
sha256sums=('390a176ebe699a0996fdff305c91b5e4f54d41daa71796b138eebb19773e7624')
options=("!strip")
package() {
install -o root -g root -m 755 -d "${pkgdir}/usr/bin"
install -o root -g root -m 755 "${srcdir}/pupdate" "${pkgdir}/usr/bin/pupdate"
}
|