blob: f7a057bc88335638a8c1313a04a5afbc73610694 (
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
|
# Maintainer: Jan Trefil <hjantrefil@gmail.com>
pkgname="rkvm"
pkgver=0.6.1
pkgrel=1
pkgdesc="Virtual KVM switch for Linux machines"
# This is a conservative estimate.
# Leave a comment if you get rkvm working on another arch and want to add it to the PKGBUILD.
arch=("x86_64")
url="https://github.com/htrefil/rkvm"
license=("MIT")
depends=("libevdev>=1.9.0")
makedepends=("cargo" "clang" "pkgconf")
optdepends=("openssl: certificate generation")
source=("$pkgname-$pkgver.tar.gz::https://github.com/htrefil/rkvm/archive/refs/tags/$pkgver.tar.gz")
md5sums=("3804bb15f9e87e4afd32487000e7d58c")
# Disabled because of a bug in ring: https://github.com/briansmith/ring/issues/1444
options=('!lto')
prepare() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}
build() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --frozen --release --all-features
}
package() {
cd "$pkgname-$pkgver"
# Binaries.
install -Dm755 target/release/rkvm-server "$pkgdir/usr/bin/rkvm-server"
install -Dm755 target/release/rkvm-client "$pkgdir/usr/bin/rkvm-client"
install -Dm755 target/release/rkvm-certificate-gen "$pkgdir/usr/bin/rkvm-certificate-gen"
# systemd services.
install -Dm644 "systemd/rkvm-server.service" "$pkgdir/usr/lib/systemd/system/rkvm-server.service"
install -Dm644 "systemd/rkvm-client.service" "$pkgdir/usr/lib/systemd/system/rkvm-client.service"
# Remove old example configurations placed at the wrong place.
rm -f "$pkgdir/etc/rkvm/server.example.toml"
rm -f "$pkgdir/etc/rkvm/client.example.toml"
# Example configurations.
install -Dm640 "example/server.toml" "$pkgdir/usr/share/rkvm/examples/server.toml"
install -Dm640 "example/client.toml" "$pkgdir/usr/share/rkvm/examples/client.toml"
}
|