contrib/dtach/Pkgfile

22 lines
442 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
release=2
source=(https://github.com/crigler/$name/archive/v$version.tar.gz)
2019-07-28 01:41:38 +02:00
build() {
cd $name-$version
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
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