2019-07-27 19:41:38 -04:00
|
|
|
# Description: Emulates the detach feature of screen.
|
2021-01-27 14:44:46 +01:00
|
|
|
# URL: https://github.com/crigler/dtach
|
|
|
|
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
|
2019-07-27 19:41:38 -04:00
|
|
|
|
|
|
|
name=dtach
|
|
|
|
version=0.9
|
2021-11-27 19:20:33 +01:00
|
|
|
gitver=7acac922770597f5da5df7b290078770d20dac32
|
|
|
|
release=3
|
|
|
|
source=(https://github.com/crigler/${name}/archive/${gitver}/${name}-${version}.tar.gz)
|
2019-07-27 19:41:38 -04:00
|
|
|
|
|
|
|
build() {
|
2021-11-27 19:20:33 +01:00
|
|
|
cd ${name}-${gitver}
|
2019-07-27 19:41:38 -04:00
|
|
|
|
2021-01-27 14:44:46 +01:00
|
|
|
./configure
|
2019-07-27 19:41:38 -04:00
|
|
|
|
2021-01-27 14:44:46 +01:00
|
|
|
make
|
2019-07-27 19:41:38 -04: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-27 19:41:38 -04:00
|
|
|
}
|
2021-01-27 14:44:46 +01:00
|
|
|
|
|
|
|
# s-sh-mode
|