summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/community/screen/PKGBUILD
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/extra-testing/community/screen/PKGBUILD
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/extra-testing/community/screen/PKGBUILD')
-rw-r--r--abs/extra-testing/community/screen/PKGBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/abs/extra-testing/community/screen/PKGBUILD b/abs/extra-testing/community/screen/PKGBUILD
deleted file mode 100644
index f97df4b..0000000
--- a/abs/extra-testing/community/screen/PKGBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 9361 2008-08-17 06:28:44Z allan $
-# Maintainer: Aaron Griffin <aaron@archlinux.org>
-# Committer: dorphell <dorphell@gmx.net>
-
-pkgname=screen
-pkgver=4.0.3
-pkgrel=6
-_ptygroup=5 #the UID of our PTY/TTY group
-pkgdesc="Full-screen window manager that multiplexes a physical terminal"
-license=('GPL')
-arch=('i686' 'x86_64')
-install=screen.install
-depends=(ncurses libelf shadow gpm)
-backup=('etc/screenrc' 'etc/pam.d/screen')
-url="ftp://ftp.uni-erlangen.de/pub/utilities/screen"
-source=(ftp://ftp.uni-erlangen.de/pub/utilities/screen/screen-${pkgver}.tar.gz \
- screen.pam)
-md5sums=('8506fd205028a96c741e4037de6e3c42' '74f7919d7b65436cc2ea5341fa8ca374')
-
-build() {
- export MAKEFLAGS="-j1"
- cd ${startdir}/src/${pkgname}-${pkgver}
-
- ./configure --prefix=/usr --enable-pam \
- --with-sys-screenrc=/etc/screenrc --enable-colors256 \
- --enable-rxvt_osc --with-pty-group=$_ptygroup \
- --mandir=/usr/share/man
- make || return 1
- make DESTDIR=${startdir}/pkg install || return 1
- mkdir -p ${startdir}/pkg/etc/pam.d
- install -m644 ${startdir}/src/screen.pam ${startdir}/pkg/etc/pam.d/screen
-
- cd etc/
- mkdir -p ${startdir}/pkg/usr/share/zsh/site-functions/
- install -m644 completer.zsh ${startdir}/pkg/usr/share/zsh/site-functions/screen
- mkdir -p ${startdir}/pkg/etc/skel/
- install -m644 etcscreenrc ${startdir}/pkg/etc/screenrc
- install -m644 screenrc ${startdir}/pkg/etc/skel/.screenrc
-
- rm -rf ${startdir}/pkg/usr/info
-}