Don't like ads? PRO users don't see any ads ;-)
Guest

Fixed pkgbuild for unionfs-fuse

By: a guest on Aug 25th, 2010  |  syntax: Bash  |  size: 0.78 KB  |  hits: 94  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Contributor: Smith Dhumbumroong <zodmaner at gmail dot com>
  2.  
  3. pkgname=unionfs-fuse
  4. pkgver=0.24
  5. pkgrel=2
  6. pkgdesc="unionfs-fuse is an effort to create a userland unionfs implementation that is way more flexible than the current in-kernel based unionfs solution."
  7. arch=('i686' 'x86_64')
  8. url="http://podgorny.cz/moin/UnionFsFuse"
  9. license=('custom')
  10. makedepends=('cmake')
  11. depends=('fuse')
  12. source=(http://podgorny.cz/unionfs-fuse/releases/$pkgname-$pkgver.tar.bz2)
  13. md5sums=('ab00f252c55a9a7252fca13a53260bf5')
  14.  
  15. build() {
  16.     cd "$srcdir/$pkgname-$pkgver"
  17.     cmake -DCMAKE_INSTALL_PREFIX=/usr . || return 1
  18.     make || return 1
  19.     make DESTDIR="$pkgdir" install
  20.     # install license
  21.     install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  22. }