[arch-commits] Commit in vc/trunk (PKGBUILD)

Antonio Rojas arojas at archlinux.org
Mon Nov 2 22:34:09 UTC 2015


    Date: Monday, November 2, 2015 @ 23:34:09
  Author: arojas
Revision: 250037

Update to 0.7.5

Modified:
  vc/trunk/PKGBUILD

----------+
 PKGBUILD |   30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2015-11-02 22:29:59 UTC (rev 250036)
+++ PKGBUILD	2015-11-02 22:34:09 UTC (rev 250037)
@@ -1,37 +1,37 @@
 # $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Maintainer:
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
 # Contributor: PedsXing <pedsxing at gmx dot net>
 
 pkgname=vc
-pkgver=0.7.4
+pkgver=0.7.5
 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')
-options=('staticlibs') # only builds a static library
-source=("http://code.compeng.uni-frankfurt.de/attachments/download/183/Vc-${pkgver}.tar.gz")
-md5sums=('b11f0c6925f64a4ce178d3b8f0c282f8')
+arch=(x86_64 i686)
+license=(LGPL3)
+makedepends=(cmake)
+source=("https://github.com/VcDevel/Vc/releases/download/0.7.5/Vc-$pkgver.tar.gz")
+md5sums=('59854e2381b78d602b4a00e459e3d333')
 
 prepare() {
-  mkdir build
+  mkdir -p build
 }
 
 build() {
   cd build
-  cmake ../Vc-${pkgver} \
+  cmake ../Vc-$pkgver \
     -DCMAKE_INSTALL_PREFIX=/usr \
     -DCMAKE_BUILD_TYPE=Release
   make
 }
 
-#check() {
-#  cd build
-#  make test
-#}
+check() {
+  cd build
+  make test
+}
 
 package() {
   cd build
-  make DESTDIR="${pkgdir}" install
+  make DESTDIR="$pkgdir" install
 }



More information about the arch-commits mailing list