22 lines
465 B
Bash
22 lines
465 B
Bash
#!/bin/sh
|
|
pkgname=zzz
|
|
version=1.0.0
|
|
revision=1
|
|
short_desc="Simple resume/suspend script, seperated from runit"
|
|
maintainer="Tracker-Friendly <jliwin98@danwin1210.de>"
|
|
homepage="https://github.com/void-linux/void-runit"
|
|
license="BSD-3-Clause"
|
|
makedepends="wget acpid"
|
|
|
|
do_build() {
|
|
mkdir -p ${DESTDIR}/usr/bin
|
|
cd ${DESTDIR}
|
|
wget https://raw.githubusercontent.com/void-linux/void-runit/master/zzz
|
|
}
|
|
|
|
do_install() {
|
|
cd ${DESTDIR}
|
|
vbin zzz
|
|
rm zzz
|
|
}
|