blob: 9ed71767f3a98e7cd6b618053f00e61f23d28250 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: resumably copy with dd via network
# URL: https://git.eckner.net/Erich/dd-resume
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: help2man netcat iproute2 coreutils procps util-linux openssh
name=dd-resume
version=0.3
release=1
source=("https://git.eckner.net/Erich/${name}/snapshot/${name}-${version}.tar.xz")
build() {
cd ${name}-${version}
make
make DESTDIR=${PKG} install
}
|