blob: f53bf94305addcef937ade80fdf25da1026c4d8b (
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: Andrey Kolchenko <andrey@kolchenko.me>
pkgname=mirrord-bin
pkgver=3.53.3
pkgrel=1
pkgdesc='Run your service in the context of your cloud environment.'
arch=('x86_64')
url='https://mirrord.dev/'
license=('MIT')
depends=()
makedepends=(
'coreutils'
'grep'
)
source=("mirrord_${pkgver}::https://github.com/metalbear-co/mirrord/releases/download/${pkgver}/mirrord_linux_x86_64")
sha256sums=('76d556ac3594c448b731224eb288c384a91f82cefef55287e2f523100326a5af')
package() {
mv "mirrord_${pkgver}" mirrord
install -m 755 -D -t "${pkgdir}/usr/bin/" mirrord
rm -f mirrord
}
|