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

cifs-utils PKGBUILD

By: a guest on Feb 7th, 2011  |  syntax: Bash  |  size: 0.54 KB  |  hits: 245  |  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. # Maintainer: Your Name <youremail@domain.com>
  2. pkgname=cifs-utils
  3. pkgver=4.8.1
  4. pkgrel=1
  5. pkgdesc="CIFS filesystem user-space tools"
  6. arch=(i686 x86_64)
  7. url="http://wiki.samba.org/index.php/LinuxCIFS_utils"
  8. license=('GPL')
  9. depends=('libcap')
  10. source=(ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2)
  11.  
  12. build() {
  13.   cd "$srcdir/$pkgname-$pkgver"
  14.  
  15.   ./configure --prefix=/usr
  16.   make
  17. }
  18.  
  19. package() {
  20.   cd "$srcdir/$pkgname-$pkgver"
  21.  
  22.   make DESTDIR="$pkgdir/" install
  23. }
  24.  
  25. md5sums=('924b754f3ce980c8f3099fc90711a945')