opt/screen/Pkgfile

24 lines
550 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A screen manager with VT100/ANSI terminal emulation
# URL: http://www.gnu.org/software/screen/
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: ncurses
name=screen
2015-06-29 08:35:27 +02:00
version=4.3.1
2014-04-28 12:08:55 +02:00
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build () {
cd $name-$version
2014-04-28 12:08:55 +02:00
./configure --prefix=/usr \
--mandir=/usr/man \
--enable-colors256
2006-02-23 16:26:10 +01:00
make
2014-04-28 12:08:55 +02:00
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
chmod -s $PKG/usr/bin/$name-$version
2006-02-23 16:26:10 +01:00
}