updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / boost.async / PKGBUILD
blobe999fc2d50f1c39cf87d4f86710c1c179f2c7ba2
1 pkgname=boost.async
2 _realname=async
3 pkgver=0.2
4 pkgrel=1
5 provides=('boost.async' 'boost.tp' 'boost.futures')
6 pkgdesc="an asynchronous framework that allows the calling of functions and functors in an asynchronous manner, thereby making it easier to improve the level of concurrency and parallelism in your applications"
7 url="http://www.boostpro.com/vault"
8 license=('boost')
9 depends=('boost' 'gcc')
10 arch=('any')
12 source=("http://www.boostpro.com/vault/index.php?action=downloadfile&filename=$_realname.zip&directory=Concurrent%20Programming&"
13         'corrections.patch')
14 build()
16     cd $srcdir/$_realname || return 1   
17     patch -Np1 < ../corrections.patch
18     install -d $pkgdir/usr/include/
19     cp -r boost $pkgdir/usr/include/
20     rm -rf $pkgdir/usr/include/boost/range
23 md5sums=('b47ff34e9164201736b0e37fcfc7e75e'
24          '448dfc7826714a5c2adb905668d0b5f7')