Skip to content

Commit

Permalink
addpkg: catatonit 0.1.4-3
Browse files Browse the repository at this point in the history
Foxboron committed Dec 14, 2019
1 parent e69060b commit 2357aba
Showing 2 changed files with 46 additions and 0 deletions.
15 changes: 15 additions & 0 deletions catatonit/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
pkgbase = catatonit
pkgdesc = A container init that is so simple it's effectively brain-dead.
pkgver = 0.1.4
pkgrel = 3
url = https://github.com/openSUSE/catatonit/
arch = x86_64
license = GPL3
source = https://github.com/openSUSE/catatonit/releases/download/v0.1.4/catatonit.tar.xz
source = https://github.com/openSUSE/catatonit/releases/download/v0.1.4/catatonit.tar.xz.asc
validpgpkeys = 5F36C6C61B5460124A75F5A69E18AA267DDB8DB4
sha256sums = 5b6dab80839b4246484ca861764899cbc21eecaff4740d2cb6a0463bc70bf63b
sha256sums = SKIP

pkgname = catatonit

31 changes: 31 additions & 0 deletions catatonit/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Maintainer: Morten Linderud <foxboron@archlinux.org>
# Contributor: Axel Hinrichs <hinrichs@bitscape.de>

pkgname=catatonit
pkgver=0.1.4
pkgrel=3
pkgdesc="A container init that is so simple it's effectively brain-dead."
arch=('x86_64')
url="https://github.com/openSUSE/catatonit/"
license=('GPL3')
source=("https://github.com/openSUSE/catatonit/releases/download/v$pkgver/$pkgname.tar.xz"{,.asc})
validpgpkeys=('5F36C6C61B5460124A75F5A69E18AA267DDB8DB4')
sha256sums=('5b6dab80839b4246484ca861764899cbc21eecaff4740d2cb6a0463bc70bf63b'
'SKIP')


build() {
cd "$pkgname-$pkgver"
autoreconf -fi
./configure --prefix=/usr
make
}

package() {
cd "$pkgname-$pkgver"
make PREFIX=/usr DESTDIR="$pkgdir" install
install -d "${pkgdir}/usr/libexec/podman/"
ln -s /usr/bin/$pkgname "${pkgdir}/usr/libexec/podman/"
}

# vim: ft=sh syn=sh

0 comments on commit 2357aba

Please sign in to comment.