64 lines
1.7 KiB
Bash
64 lines
1.7 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Brett Cornwall <ainola@archlinux.org>
|
|
# Contributor: Gaetan Bisson <bisson@archlinux.org>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
# Committer: dorphell <dorphell@gmx.net>
|
|
|
|
pkgname=screen
|
|
pkgver=4.9.1
|
|
pkgrel=2
|
|
pkgdesc='Full-screen window manager that multiplexes a physical terminal'
|
|
url='https://www.gnu.org/software/screen/'
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
license=('GPL-3.0-or-later')
|
|
depends=(
|
|
'libcrypt.so'
|
|
'libncursesw.so'
|
|
'libpam.so'
|
|
'libutempter'
|
|
)
|
|
source=("https://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"
|
|
'tmpfiles.d'
|
|
'pam.d')
|
|
sha256sums=('26cef3e3c42571c0d484ad6faf110c5c15091fbf872b06fa7aa4766c7405ac69'
|
|
'1f33ce4faca7bd05dd80403411af31e682d5d23e79558e884ae5a35f1dd96223'
|
|
'971c25929ea97422c09e10679ab98e9e6c59295aae1a4a9970909d2206e23090')
|
|
|
|
backup=('etc/screenrc' 'etc/pam.d/screen')
|
|
options=('!makeflags')
|
|
|
|
_ptygroup=5 #the UID of our PTY/TTY group
|
|
|
|
prepare() {
|
|
cd ${pkgname}-${pkgver}
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--enable-colors256 \
|
|
--enable-pam \
|
|
--enable-rxvt_osc \
|
|
--enable-telnet \
|
|
--with-pty-group=$_ptygroup \
|
|
--with-socket-dir=/run/screens \
|
|
--with-sys-screenrc=/etc/screenrc \
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
|
|
install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/screen.conf
|
|
|
|
install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc
|
|
install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc
|
|
}
|