Advertisement
Guest User

Untitled

a guest
Dec 17th, 2011
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.73 KB | None | 0 0
  1. # Contributor: Nicolas Bigaouette <bigaouette@gmail.com>
  2. # Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
  3.  
  4. pkgname=xsvg
  5. pkgver=0.2.1
  6. pkgrel=2
  7. pkgdesc="A viewer of SVG files"
  8. url="http://cairographics.org/"
  9. license=('custom')
  10. depends=('libsvg-cairo')
  11. arch=('i686' 'x86_64')
  12. source=("http://cairographics.org/snapshots/$pkgname-$pkgver.tar.gz" "xsvg.patch")
  13. md5sums=('f20409e87d9bff3c4d698d8c0e9e9f2b'
  14.          '8d24078a6ba24a54e205cc5d67ea4483')
  15. build() {
  16.   cd $srcdir/$pkgname-$pkgver
  17.   patch -p1 -i $srcdir/xsvg.patch
  18.   autoreconf
  19.   ./configure --prefix=/usr
  20.   make
  21. }
  22. package() {
  23.   cd $srcdir/$pkgname-$pkgver
  24.   make prefix=${pkgdir}/usr install
  25.   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/$pkgname
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement