updated on Sun Jan 15 20:01:04 UTC 2012
[aur-mirror.git] / libmelon / PKGBUILD
blob3f0e1dda0ff23b6133b4d51606ce2b0a2013fb79
1 # Maintainer: Alexandre Bique <bique.alexandre@gmail.com>
3 pkgname=libmelon
4 pkgver=0.10.4
5 pkgrel=1
6 pkgdesc="M:N fiber implementation, with transparent IO reactor and timeouts, POSIX like APIs"
7 arch=('i686' 'x86_64')
8 url="http://github.com/abique/melon"
9 license=('LGPL3')
10 makedepends=('cmake>=2.8')
11 depends=()
12 options=()
13 source=("https://github.com/abique/melon/tarball/${pkgver}")
14 sha256sums=('d8aef10ca64062543ea6044e86bdc4f7913b9b4608e88264badbf48d9fa8df69')
16 build() {
17   cd ${srcdir}/abique-melon-* &&
18   mkdir build &&
19   cd build &&
20   cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
21   make
24 package() {
25   cd ${srcdir}/abique-melon-*/build &&
26   DESTDIR=${pkgdir} make install