contrib/dtach/Pkgfile

23 lines
530 B
Plaintext
Raw Normal View History

2019-07-28 01:41:38 +02:00
# Description: Emulates the detach feature of screen.
# URL: https://github.com/crigler/dtach
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
2019-07-28 01:41:38 +02:00
name=dtach
version=0.9
gitver=7acac922770597f5da5df7b290078770d20dac32
release=3
source=(https://github.com/crigler/${name}/archive/${gitver}/${name}-${version}.tar.gz)
2019-07-28 01:41:38 +02:00
build() {
cd ${name}-${gitver}
2019-07-28 01:41:38 +02:00
./configure
2019-07-28 01:41:38 +02:00
make
2019-07-28 01:41:38 +02:00
2021-02-08 23:12:48 +01:00
install -D -m 755 ${name} "${PKG}"/usr/bin/${name}
install -D -m 644 ${name}.1 "${PKG}"/usr/share/man/man1/${name}.1
2019-07-28 01:41:38 +02:00
}
# s-sh-mode