summaryrefslogtreecommitdiff
path: root/opt/catatonit/MAKEPKG
blob: 76731fc5c6f1217b7495956dd8204e7a3b78d0a1 (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: Minimal init for containers (pause process)
# url: https://github.com/openSUSE/catatonit

name=catatonit
version=0.2.1
release=1
depends=()
makedeps=(autoconf automake libtool)
source=(https://github.com/openSUSE/$name/archive/refs/tags/v$version.tar.gz)

sha256sums=(
    "771385049516fdd561fbb9164eddf376075c4c7de3900a8b18654660172748f1"
)

build() {
    cd $name-$version

    autoreconf -fiv
    ./configure \
        --prefix=/usr

    make
    install -Dm755 $name $PKG/usr/libexec/podman/$name
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh