summaryrefslogtreecommitdiff
path: root/community-testing/uzbl/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/uzbl/PKGBUILD')
-rw-r--r--community-testing/uzbl/PKGBUILD63
1 files changed, 0 insertions, 63 deletions
diff --git a/community-testing/uzbl/PKGBUILD b/community-testing/uzbl/PKGBUILD
deleted file mode 100644
index 82bbe2770..000000000
--- a/community-testing/uzbl/PKGBUILD
+++ /dev/null
@@ -1,63 +0,0 @@
-# $Id: PKGBUILD 45245 2011-04-18 20:59:54Z lcarlier $
-# Maintainer : Laurent Carlier <lordheavym@gmail.com>
-# Contributor: Ionut Biru <ibiru@archlinux.org>
-# Contributor: Dieter Plaetinck <dieter@plaetinck.be>
-
-pkgbase=uzbl
-pkgname=('uzbl-core' 'uzbl-browser' 'uzbl-tabbed')
-pkgver=2011.04.12
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://www.uzbl.org"
-license=('GPL3')
-makedepends=('git' 'pkgconfig' 'libwebkit>=1.3.13')
-source=(uzbl-$pkgver.tar.gz::http://github.com/Dieterbe/uzbl/tarball/$pkgver)
-md5sums=('27e82c838b8136dafb0683fa52ffc701')
-
-build() {
- cd "$srcdir"/Dieterbe-uzbl-*
-
- # python2 fix
- for file in examples/data/scripts/uzbl*; do
- sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
- done
- sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
- -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
- $(find ./ -name '*.py')
-
- make
-}
-
-package_uzbl-core() {
- pkgdesc="Webpage interface component meant for integration with other tools and scripts"
- depends=('libwebkit>=1.3.13')
- optdepends=('socat: to interface with the socket' 'dmenu: to run some of the example scripts'
- 'zenity: to run some of the example scripts'
- 'python2: to run some of the example scripts'
- 'xclip: for clipboard related keybindings'
- 'pygtk: for uzbl-tabbed')
- install=uzbl.install
-
- cd "$srcdir"/Dieterbe-uzbl-*
-
- make DESTDIR="$pkgdir" PREFIX=/usr install-uzbl-core
-}
-
-package_uzbl-browser() {
- pkgdesc="A complete browser experience based on uzbl-core"
- depends=("uzbl-core=$pkgver" 'socat' 'zenity' 'xclip' 'dmenu' 'python2')
-
- cd "$srcdir"/Dieterbe-uzbl-*
-
- make DESTDIR="$pkgdir" PREFIX=/usr install-uzbl-browser
-}
-
-package_uzbl-tabbed() {
- pkgdesc="Tabbing manager providing multiple uzbl-browser instances in 1 window"
- depends=("uzbl-browser=$pkgver" 'pygtk')
-
- cd "$srcdir"/Dieterbe-uzbl-*
-
- make DESTDIR="$pkgdir" PREFIX=/usr install-uzbl-tabbed
-}
-