[arch-commits] Commit in igraph/repos (2 files)
Evangelos Foutras
foutrelis at archlinux.org
Mon Apr 27 12:19:09 UTC 2020
Date: Monday, April 27, 2020 @ 12:19:09
Author: foutrelis
Revision: 621865
archrelease: copy trunk to community-staging-x86_64
Added:
igraph/repos/community-staging-x86_64/
igraph/repos/community-staging-x86_64/PKGBUILD
(from rev 621864, igraph/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: igraph/repos/community-staging-x86_64/PKGBUILD (from rev 621864, igraph/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-04-27 12:19:09 UTC (rev 621865)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Fazlul Shahriar <fshahriar at gmail.com>
+# Contributor: Denis Zawada <deno at bajtogrod.pl>
+
+pkgname=igraph
+pkgver=0.8.1
+pkgrel=2
+pkgdesc="A library for creating and manipulating (un)directed graphs."
+arch=(x86_64)
+url="https://igraph.org/c/"
+license=(GPL2)
+depends=(glpk arpack libxml2)
+source=("https://github.com/igraph/igraph/releases/download/$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('266e1bf9e81305b368fbaa2218a8416c51ae85ea164e3657c574dc3898ca7b71')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure \
+ --prefix=/usr \
+ --with-external-blas \
+ --with-external-lapack \
+ --with-external-arpack \
+ --with-external-glpk
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list