1. # Contributor: Your Name <youremail@domain.com>
  2. pkgname=kdm-plugin-pam-face-authentication
  3. pkgver=0.2
  4. pkgrel=1
  5. pkgdesc="PAM face auth - KDM plugin"
  6. arch=('i686' 'x86_64')
  7. url="http://code.google.com/p/pam-face-authentication"
  8. license=('GPL')
  9. #groups=()
  10. depends=('kdebase-workspace' 'pam-face-authentication')
  11. makedepends=('cmake' 'automoc4')
  12. #provides=()
  13. #conflicts=()
  14. #replaces=()
  15. #backup=()
  16. #install=
  17. source=(http://pam-face-authentication.googlecode.com/files/$pkgname-$pkgver.tar.gz)
  18. #noextract=()
  19. sha1sums=('48c75b9bece397cb16688b6d84e9959df56c6185')
  20.  
  21. build() {
  22.   cd "$srcdir/$pkgname-$pkgver"
  23.   cmake -D CMAKE_INSTALL_PREFIX=/usr/ . || return 1
  24.   make || return 1
  25.   make DESTDIR="$pkgdir/" install
  26. }