blob: 37ae7089bc455da8d40ee6a6fef33ed00395f64e (
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
|
# Maintainer: Michael Clayfield <me asdf michaelclayfield asdf com asdf>
_pkgname=cup
pkgname=$_pkgname-docker
pkgver=2.3.1
pkgrel=1
pkgdesc="Cup is the easiest way to check for container image updates."
url="https://github.com/sergi0g/cup"
makedepends=('cargo' 'bun' 'typescript')
arch=('x86_64' 'aarch64')
license=('MIT')
source=("https://github.com/sergi0g/cup/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('3d200b243e83e4cdda403b3888f9596b9975e4c37066f95f4d8edf89b0edeafb')
prepare() {
cd "$_pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "$_pkgname-$pkgver"/web/
bun install
bun run build
cp -r dist/ ../src/static
cd ../
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --frozen --release --all-features
}
package() {
cd "$_pkgname-$pkgver"
install -Dm755 target/release/$_pkgname -t "$pkgdir/usr/bin"
install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
install -d "$pkgdir/usr/share/licenses/$pkgname"
install -m644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/"
}
|