blob: c0b06f8de426b6f3606624c06c9bd49d0c27c714 (
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=4.2.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=('4fd00394743bff10e4afbdd4bde6f97d0d03b19a2f1854f3b37c8c496b39b717')
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"
}
|