diff options
author | Breno Leitao <breno.leitao@gmail.com> | 2017-03-29 14:19:23 +0000 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-03-29 21:32:19 +0200 |
commit | c657570f6af20a9697c8559bbb7f98d9474b2e50 (patch) | |
tree | e1cd791c3aa4282066c5ba6f7f1d2ba85af48837 /main/py-curl/APKBUILD | |
parent | 48fc3752739e40395b8058ce8512d2c7d153cd6a (diff) | |
download | aports-c657570f6af20a9697c8559bbb7f98d9474b2e50.tar.bz2 aports-c657570f6af20a9697c8559bbb7f98d9474b2e50.tar.xz |
main/py-curl: add libssl-dev as a make dependency
py-curl does not build on a clean environment due to lack of
libressl-dev package, that is not listed as a make-dependency.
This is the failure:
In file included from src/docstrings.c:4:0:
src/pycurl.h:170:31: fatal error: openssl/crypto.h: No such file or directory
# include <openssl/crypto.h>
^
compilation terminated.
error: command 'gcc' failed with exit status 1
>>> ERROR: py-curl: all failed
Diffstat (limited to 'main/py-curl/APKBUILD')
-rw-r--r-- | main/py-curl/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/py-curl/APKBUILD b/main/py-curl/APKBUILD index 623ae9b872..aec9730a96 100644 --- a/main/py-curl/APKBUILD +++ b/main/py-curl/APKBUILD @@ -9,7 +9,7 @@ url="http://pycurl.io/" arch="all" license="LGPLv2+ MIT" depends="" -makedepends="curl-dev python2-dev python3-dev py-setuptools" +makedepends="curl-dev libressl-dev python2-dev python3-dev py-setuptools" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" |