mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-14 06:14:43 +02:00
30 lines
822 B
Text
30 lines
822 B
Text
# Maintainer: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
pkgname=dtach
|
|
pkgver=0.9
|
|
pkgrel=5
|
|
pkgdesc="A program that emulates the detach feature of screen"
|
|
url="https://dtach.sourceforge.net/"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
source="https://downloads.sourceforge.net/project/dtach/dtach/$pkgver/dtach-$pkgver.tar.gz"
|
|
subpackages="$pkgname-doc"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
./dtach --help > /dev/null
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 dtach "$pkgdir"/usr/bin/dtach
|
|
install -Dm644 dtach.1 "$pkgdir"/usr/share/man/man1/dtach.1
|
|
install -Dm644 README "$pkgdir"/usr/share/doc/dtach/README
|
|
}
|
|
|
|
sha512sums="28c13dc8c96c16b9c6153a3a11fdeb4a4bc72e84e1f2575043b047cd8e600a47232f29544ffd87d82e2575623ec2e999a26e23e9eac25ec81c7722bdf98cfb18 dtach-0.9.tar.gz"
|