summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorjose17112017-08-20 01:04:03 +0200
committerjose17112017-08-20 01:04:03 +0200
commit33703d5ac936a088707c62525cedbbf95c1e4a63 (patch)
tree42db22f06e5f9a201bbb0de511488bf43479b06a
parenteb5845a9a7b4b88afaae1f3efa6858e07e50e123 (diff)
downloadaur-33703d5ac936a088707c62525cedbbf95c1e4a63.tar.gz
Fix building
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD12
2 files changed, 9 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0ce48976be02..03c9ba705a7e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Nov 19 12:28:11 UTC 2016
+# Sat Aug 19 23:03:57 UTC 2017
pkgbase = virtuoso
pkgdesc = Virtuoso is a scalable cross-platform server that combines Relational,\ Graph, and Document Data Management with Web Application Server and Web \ Services Platform functionality.
pkgver = 7.2.4.2
- pkgrel = 1
+ pkgrel = 2
url = http://virtuoso.openlinksw.com/wiki/main/Main/
install = virtuoso.install
arch = x86_64
@@ -16,6 +16,7 @@ pkgbase = virtuoso
depends = libldap
depends = imagemagick
depends = java-environment
+ depends = openssl-1.0
provides = virtuoso-base
replaces = virtuoso-base
source = http://downloads.sourceforge.net/virtuoso/virtuoso-opensource-7.2.4.2.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
index c0ad6078d918..960631579694 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,14 +5,14 @@
pkgname=virtuoso
pkgver=7.2.4.2
-pkgrel=1
+pkgrel=2
arch=('x86_64')
url='http://virtuoso.openlinksw.com/wiki/main/Main/'
license=('GPL')
pkgdesc='Virtuoso is a scalable cross-platform server that combines Relational,\
Graph, and Document Data Management with Web Application Server and Web \
Services Platform functionality.'
-depends=('libldap' 'imagemagick' 'java-environment')
+depends=('libldap' 'imagemagick' 'java-environment' 'openssl-1.0')
makedepends=('bison' 'flex' 'gperf' 'net-tools' 'optipng')
replaces=('virtuoso-base')
provides=('virtuoso-base')
@@ -33,10 +33,10 @@ build() {
cd ${pkgname}-opensource-${pkgver}
- ./configure --with-layout=debian \
- --program-transform-name='s/isql$$/isql-vt/;s/isqlw/isqlw-vt/' \
- --with-readline
-
+ CFLAGS="-I/usr/include/openssl-1.0" LDFLAGS="-L/usr/lib/openssl-1.0" \
+ ./configure --with-layout=debian \
+ --program-transform-name='s/isql$$/isql-vt/;s/isqlw/isqlw-vt/' \
+ --with-readline
make
}