blob: c2c3637e157e838c42fd379309e4ee394eb26402 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#Maintainer: Jamie Steven (gritty.water0696@fastmail.com)
_name=pixlet
pkgname=${_name}-bin
pkgver=0.34.0
pkgrel=1
arch=("x86_64" "aarch64")
pkgdesc='Build apps for pixel-based displays'
url="https://github.com/tidbyt/pixlet"
license=(APACHE)
provides=("${_name}")
source_x86_64=("https://github.com/tidbyt/pixlet/releases/download/v${pkgver}/pixlet_${pkgver}_linux_amd64.tar.gz")
source_aarch64=("https://github.com/tidbyt/pixlet/releases/download/v${pkgver}/pixlet_${pkgver}_linux_arm64.tar.gz")
sha1sums_x86_64=('f6bfd931bb1ac3732fd1eb7ad50587f26704adbb')
sha1sums_aarch64=('c037eb3e9548e51d0db02f832edd76e6a95da060')
package() {
install -Dm755 ${_name} ${pkgdir}/usr/bin/${_name}
}
|