diff options
Diffstat (limited to 'community/terminator/PKGBUILD')
-rw-r--r-- | community/terminator/PKGBUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/community/terminator/PKGBUILD b/community/terminator/PKGBUILD deleted file mode 100644 index eaacd67d3..000000000 --- a/community/terminator/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 55930 2011-09-25 18:21:36Z guillaume $ -# Contributor: Allan McRae <allan@archlinux.org> -# Contributor: fancris3 <fancris3 at gmail.com> -# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> - -pkgname=terminator -pkgver=0.96 -pkgrel=1 -pkgdesc='an application that provides lots of terminals in a single window' -arch=('i686' 'x86_64') -url='http://www.tenshu.net/terminator/' -license=('GPL2') -depends=('vte' 'pygtk' 'xdg-utils') -makedepends=('desktop-file-utils' 'gettext' 'intltool') -install=terminator.install -source=("https://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz") -md5sums=('070e3878336b341c9e18339d89ba64fe') - -build() { - cd ${pkgname}-${pkgver} - - # python2 fix - for file in terminatorlib/{,plugins/}*.py; do - sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file - sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file - done - - python2 setup.py build -} - -package() { - cd ${pkgname}-${pkgver} - - python2 setup.py install --skip-build --root=${pkgdir} - - rm -f ${pkgdir}/usr/share/applications/${pkgname}.desktop - rm -f ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache - install -D -m644 ${srcdir}/${pkgname}-${pkgver}/data/${pkgname}.desktop.in ${pkgdir}/usr/share/applications/${pkgname}.desktop - sed -i 's|_||' ${pkgdir}/usr/share/applications/${pkgname}.desktop -} |