17 lines
343 B
Bash
17 lines
343 B
Bash
|
pkgname=shadowfix
|
||
|
version=1.0
|
||
|
revision=0
|
||
|
build_style=meta
|
||
|
maintainer="Tracker-Friendly <jliwin98@danwin1210.de>"
|
||
|
short_desc="Something that should only ever be installed ONCE. EVER."
|
||
|
license="GPL-3.0"
|
||
|
homepage="https://evolutionos.codeberg.page"
|
||
|
|
||
|
do_install() {
|
||
|
#!/bin/bash
|
||
|
|
||
|
mkdir -p ${DESTDIR}/etc/
|
||
|
|
||
|
touch ${DESTDIR}/etc/shadow
|
||
|
}
|