23 lines
596 B
Bash
23 lines
596 B
Bash
#!/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" "devel/linux-headers")
|
|
run_dependencies=("system/glibc")
|
|
|
|
build_process() {
|
|
cd "$name-$version" || exit 1
|
|
make DESTDIR=$TAMANDUA_STAGE_DIR
|
|
make PREFIX=/usr DESTDIR=$TAMANDUA_STAGE_DIR install
|
|
}
|
|
|