blob: c37a99fba6fc45a795450c52eae62ec2326a2b1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: skript for dcron to run daily/weekly/monthly-scripts parallelly instead of sequentially
# URL: https://git.eckner.net/Erich/runjobsparallel
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: dcron
name=runjobsparallel
version=0.3.3
release=1
source=("https://git.eckner.net/Erich/${name}/snapshot/${name}-${version}.tar.xz")
build() {
cd ${name}-${version}
make
make DESTDIR=$PKG install
}
|