blob: ae784801ba78016a75156d0889136c771cc0a7ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: simple script for shutdown waiting for certain processes and files to disapear
# URL: https://git.eckner.net/Erich/shutdownasap
# Maintainer: Erich Eckner, crux at eckner dot net
name=shutdownasap
version=1.0.5
release=1
source=("https://git.eckner.net/Erich/${name}/snapshot/${name}-${version}.tar.xz")
build() {
cd ${name}-${version}
make
make DESTDIR=$PKG install
}
|