blob: aac7374e82b8970fa1d7774f2651edbb7e485bc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: Shohei Maruyama <cheat.sc.linux@outlook.com>
pkgname=rustfs
pkgver=1.0.0_alpha.82
_console_ver=0.0.12
pkgrel=2
pkgdesc="High-performance distributed object storage for MinIO alternative."
url='https://rustfs.com/en/'
arch=('x86_64')
license=('Apache-2.0')
depends=(
'glibc'
'gcc-libs'
'bzip2'
)
makedepends=(
'cargo'
'pnpm'
)
options=(!lto)
source=(
"${pkgname}-${pkgver//_/-}.tar.gz::https://github.com/rustfs/rustfs/archive/refs/tags/${pkgver//_/-}.tar.gz"
"console-${_console_ver}.tar.gz::https://github.com/rustfs/console/archive/refs/tags/v${_console_ver}.tar.gz"
)
sha256sums=(
'58d07a741cd6a0757deda58cb94982c2bfe612162b9df4beeafae6984a995a61'
'97da67edd2d95941922010d5d0c18d30f42954ff557d683cfd386dc8829de7e7'
)
prepare() {
cd ${pkgname}-${pkgver//_/-}
RUSTC_BOOTSTRAP=1 cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
# build embedded console assets
cd console-${_console_ver}
# `NUXT_TELEMETRY_DISABLED=1` ignores the Nuxt.js starting question
export NUXT_TELEMETRY_DISABLED=1
# pnpm-lock.yaml exists, but pnpm failed to build. The following options fixes it.
pnpm i --shamefully-hoist --dangerously-allow-all-builds
pnpm generate
cp -r .output/public/* ${srcdir}/${pkgname}-${pkgver//_/-}/rustfs/static/
# build rustfs
cd ${srcdir}/${pkgname}-${pkgver//_/-}
RUSTC_BOOTSTRAP=1 cargo build --frozen --release
}
package() {
cd ${pkgname}-${pkgver//_/-}
install -Dm 755 -t "${pkgdir}/usr/bin" target/release/rustfs
}
|