blob: 064354e5666bb2313abf0c3d292e5463be16e15a (
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
|
# Maintainer: Nguyễn Quang Minh <minhnbnt at gmail dot com>
pkgname=garnet-bin
_pkgname=${pkgname/-bin/}
pkgver=1.0.62
pkgrel=1
pkgdesc='A high-performance cache-store from Microsoft Research'
url='https://microsoft.github.io/garnet'
license=('MIT')
arch=('x86_64')
options=('!strip')
conflicts=($_pkgname)
provides=($_pkgname)
depends=("dotnet-runtime-9.0" "gcc-libs" "glibc" "libaio")
source=(
"garnet-${pkgver}.tar.xz::https://github.com/microsoft/${_pkgname}/releases/download/v${pkgver}/linux-x64-based.tar.xz"
"garnet-server.service::https://aur.archlinux.org/cgit/aur.git/plain/garnet-server.service?h=garnet" # jiri.pospisil's service
"https://raw.githubusercontent.com/microsoft/garnet/refs/heads/main/LICENSE"
)
sha256sums=('934b228e6958bd2612c187ec7b2fe5f1e249bcc7da0f7a73e28d856a83176ee1'
'0c16f0124c3c962e4fac1241cc1b1d86f61600758a4ff3846cd00a580e76cfdf'
'c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383')
package() {
local garnet_location="$pkgdir/usr/lib/garnet"
install -Dm755 "net9.0/GarnetServer" -t $garnet_location
install -Dm644 "net9.0/garnet.conf" "$pkgdir/etc/garnet/garnet-server.conf"
install -Dm644 "net9.0/liblua54.so" "net9.0/libnative_device.so" -t $garnet_location
mkdir -p "$pkgdir/usr/bin"
ln -sr "$pkgdir/usr/lib/garnet/GarnetServer" "$pkgdir/usr/bin/GarnetServer"
sed -ie "s/network-online/network/g" "garnet-server.service"
install -Dm644 -t "$pkgdir/usr/lib/systemd/system" "garnet-server.service"
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|