Advertisement
Guest User

Untitled

a guest
Jan 9th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. # Maintainer: Kiswono <kiswono@gmail.com>
  2. # Previous Maintainer: Lev Lybin <lev.lybin at gmail a-dot com>
  3. # Previous Contributors: Lev Lybin <lev.lybin at gmail a-dot com>
  4.  
  5. pkgname=libcouchbase-2.4
  6. pkgver=2.4.5
  7. pkgrel=1
  8. pkgdesc="The C library provides fast access to documents in Couchbase Server 2.4.x"
  9. arch=('i686' 'x86_64')
  10. url="https://github.com/couchbase/libcouchbase"
  11. license=('Apache')
  12. options=('!emptydirs' '!strip')
  13. depends=('libevent')
  14. source=("https://github.com/couchbase/libcouchbase/archive/${pkgver}.tar.gz")
  15. sha1sums=('067a4fec0987f6ea49835939cc79040c787f8ce5')
  16.  
  17. build() {
  18. tar -xzf ${pkgver}.tar.gz -C "${srcdir}/libcouchbase-${pkgver}"
  19. cd "${srcdir}/libcouchbase-${pkgver}"
  20. cmake -DCMAKE_INSTALL_PREFIX=/usr CMakeLists.txt
  21. make || return 1
  22. }
  23.  
  24. package() {
  25. cd "${srcdir}/libcouchbase-${pkgver}"
  26. make DESTDIR="${pkgdir}" install
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement