blob: e6c4aeb60ec632147b4b05abee71a2c955eed865 (
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
|
#!/bin/mkpkg
# description: Fast and lightweight OCI container runtime
# url: https://github.com/containers/crun
name=crun
version=1.30.1
release=1
depends=(yajl libcap2 libseccomp)
makedeps=(autoconf automake libtool argp-standalone)
source=(https://github.com/containers/$name/releases/download/$version/$name-$version.tar.gz)
sha256sums=(
"99d036d95113552b6df66c7c879432835504bf0e525fc0372745071df129527b"
)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-systemd
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|