29 lines
586 B
Bash
29 lines
586 B
Bash
# Maintainer: Jack L. Frost <fbt@fleshless.org>
|
|
|
|
pkgname=suex
|
|
pkgver=0.2.2
|
|
pkgrel=1
|
|
pkgdesc="A complete re-implementation of OpenBSD's doas that's extremely more robust"
|
|
url='https://github.com/odedlaz/suex'
|
|
arch=( 'x86_64' )
|
|
license=( 'MIT' )
|
|
makedepends=( 'clang-tools-extra' 'ruby-ronn' )
|
|
|
|
source=( "https://github.com/odedlaz/suex/archive/v${pkgver}.tar.gz" )
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
install -Dm755 'bin/suex' "$pkgdir/usr/bin"
|
|
}
|
|
|
|
sha1sums=('4cbe0da3978cb21c4a64b962797613e13b558752')
|