Advertisement
Guest User

PKGBUILD for pam_csync

a guest
Feb 10th, 2011
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.73 KB | None | 0 0
  1. pkgname=pam_csync
  2. pkgver=0.42.0
  3. pkgrel=2
  4. pkgdesc="a file synchronizer especially designed for you, the normal user. PAM module"
  5. arch=("i686" "x86_64")
  6. license=('GPL2')
  7. url="http://www.csync.org"
  8. depends=('log4c' 'sqlite3' 'iniparser')
  9. makedepends=('cmake')
  10. optdepends=('samba: smb support' 'libssh: sftp support')
  11. source=("http://git.csync.org/projects/pam_csync.git/snapshot/$pkgname-$pkgver.tar.gz")
  12. sha1sums=('1784713d41edb1fac78d21a1816f956f91c8d5e5')
  13.  
  14. build() {
  15.         cd $startdir/src/$pkgname-$pkgver
  16.         test -d build || mkdir build
  17.         cd build
  18.         cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr .. || return 1
  19.         make || return 1
  20.         make DESTDIR=$startdir/pkg install || return 1
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement