Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2010
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. # $Id: PKGBUILD 20550 2008-12-05 16:48:02Z allan $
  2. # Contributor: Jan de Groot <jgc@[thisdistro].org>
  3. # Maintainer: skottish <skottish97215@[googles mail client]>
  4. # Maintainer: jelly <jellevdwaa @ [googles mail client]>
  5. pkgname=evince-gtk
  6. pkgver=2.30.0
  7. pkgrel=1
  8. pkgdesc="Simply a document viewer"
  9. url="http://www.gnome.org"
  10. arch=(i686 x86_64)
  11. license=('GPL')
  12. depends=('gsfonts' 'poppler-glib>=0.12.0' 't1lib' 'libdjvu>=3.5.20' 'desktop-file-utils' 'libspectre>=0.2.2' 'hicolor-icon-theme' 'gtk2')
  13. makedepends=('pkgconfig' 'texlive-bin' 'intltool' 'gnome-doc-utils')
  14. optdepends=('texlive-bin: DVI support')
  15. install=evince-gtk.install
  16. options=('!libtool' '!emptydirs')
  17. source=(http://ftp.gnome.org/pub/gnome/sources/evince/2.30/evince-${pkgver}.tar.bz2)
  18. provides=('evince=${pkgver}')
  19. conflicts=('evince')
  20.  
  21. build() {
  22.  
  23. cd $srcdir/evince-$pkgver
  24.  
  25. sed -i '/gnome-icon-theme/{N;d;}' ./configure
  26.  
  27. ./configure --prefix=/usr \
  28. --sysconfdir=/etc \
  29. --localstatedir=/var \
  30. --without-keyring \
  31. --without-gconf \
  32. --enable-pdf \
  33. --enable-tiff \
  34. --enable-djvu \
  35. --enable-dvi \
  36. --enable-t1lib \
  37. --enable-pixbuf \
  38. --enable-comics \
  39. --enable-impress \
  40. --enable-thumbnailer \
  41. --disable-static \
  42. --disable-schemas-install \
  43. --disable-nautilus \
  44. --disable-introspection \
  45. --disable-scrollkeeper || return 1
  46. make || return 1
  47. make DESTDIR="${pkgdir}" install || return 1
  48. }
  49. md5sums=('a55f1997891a64157286b6f6b00f8458')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement