Add ssu
This commit is contained in:
parent
d642d3b39c
commit
e5cbf4232a
|
@ -0,0 +1,21 @@
|
||||||
|
#!/bin/sh
|
||||||
|
name="ssu"
|
||||||
|
short_desc="Extremely simple su utility"
|
||||||
|
desc="Extremely simple su utility"
|
||||||
|
category="sysutils"
|
||||||
|
version="0.3.2"
|
||||||
|
maintainer="oak@petrifiedoak.com"
|
||||||
|
www="https://github.com/illiliti/ssu"
|
||||||
|
master_site="https://github.com/illiliti/ssu/archive/refs/tags/"
|
||||||
|
source_name="$version.tar.gz"
|
||||||
|
license_logic="single"
|
||||||
|
license="(GPL-3.0)"
|
||||||
|
|
||||||
|
build_dependencies=("devel/gmake" "lang/gcc")
|
||||||
|
run_dependencies=("system/glibc")
|
||||||
|
|
||||||
|
build_process() {
|
||||||
|
cd "$name-$version" || exit 1
|
||||||
|
make DESTDIR=$TAMANDUA_STAGE_DIR
|
||||||
|
make PREFIX=/usr DESTDIR=$TAMANDUA_STAGE_DIR install
|
||||||
|
}
|
Loading…
Reference in New Issue