diff options
Diffstat (limited to 'extra/vc/PKGBUILD')
-rw-r--r-- | extra/vc/PKGBUILD | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/extra/vc/PKGBUILD b/extra/vc/PKGBUILD index 77a4e49f9..a6d50bc14 100644 --- a/extra/vc/PKGBUILD +++ b/extra/vc/PKGBUILD @@ -1,20 +1,23 @@ -# $Id: PKGBUILD 188826 2013-06-22 07:21:35Z andrea $ +# $Id: PKGBUILD 196799 2013-10-19 12:28:25Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: PedsXing <pedsxing at gmx dot net> pkgname=vc -pkgver=0.7.2 +pkgver=0.7.3 pkgrel=1 pkgdesc="A library to ease explicit vectorization of C++ code" url='http://code.compeng.uni-frankfurt.de/projects/vc/' arch=('x86_64' 'i686') license=('LGPL3') makedepends=('cmake') -source=("http://code.compeng.uni-frankfurt.de/attachments/download/164/Vc-${pkgver}.tar.gz") -md5sums=('f54dd2945f9e5a38945e50b4a3f7a901') +source=("http://code.compeng.uni-frankfurt.de/attachments/download/174/Vc-${pkgver}.tar.gz") +md5sums=('a55e2871a33dbcbbe444c22ccef47dbd') + +prepare() { + mkdir build +} build() { - mkdir build cd build cmake ../Vc-${pkgver} \ -DCMAKE_INSTALL_PREFIX=/usr \ |