blob: 587d605582b8cabd9828c73849fcd03ef687aa9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Kaizhao Zhang <zhangkaizhao@gmail.com>
pkgname=zigmod-bin
pkgver=r87
pkgrel=1
epoch=1
pkgdesc="A package manager for the Zig programming language"
url="https://github.com/nektro/zigmod"
license=('MIT')
arch=('x86_64')
provides=('zigmod')
conflicts=('zigmod')
source=(
"${pkgname}-${pkgver}::${url}/releases/download/${pkgver}/zigmod-x86_64-linux"
)
sha256sums=(
'3fd7ff3cdc7dfddb61ddeda22e95daeb1a0a165cb713b3c7f7abd4445b9096b1'
)
package() {
install -D -m755 "${srcdir}/${pkgname}-${pkgver}" "${pkgdir}/usr/bin/zigmod"
}
|