Advertisement
Guest User

pkgbuild hivex 1.3.8 without ruby

a guest
Sep 7th, 2013
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.70 KB | None | 0 0
  1. # Maintainer: Patryk Kowalczyk < patryk at kowalczyk dot ws>
  2.  
  3. pkgname=hivex
  4. pkgver=1.3.8
  5. pkgrel=2
  6. pkgdesc="System for extracting the contents of Windows Registry."
  7. arch=("i686" "x86_64")
  8. url="http://libguestfs.org"
  9. license=("LGPL2")
  10. depends=("python2" "ruby" "libxml2")
  11. makedepends=("perl-io-stringy" "perl-test-simple" "ocaml-findlib" "ocaml")
  12. options=("!emptydirs" "!libtool")
  13. source=("http://libguestfs.org/download/$pkgname/$pkgname-$pkgver.tar.gz")
  14. md5sums=('6ac6f5d082ee5cd14a02ca9982cc26d7')
  15.  
  16. build() {
  17.     cd $srcdir/$pkgname-$pkgver
  18.     ./configure --prefix=/usr PYTHON=python2 --disable-ruby
  19.     make
  20. }
  21.  
  22. package() {
  23.     cd $srcdir/$pkgname-$pkgver
  24.     make DESTDIR=$pkgdir install
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement