summaryrefslogtreecommitdiff
path: root/pcr/polarssl
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-09-20 16:17:48 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-09-20 16:17:48 -0300
commit27a3b01f9a5cd93e2cefb9bafed26a6ce404a0a4 (patch)
tree09e8294e9efb4e113b6bae74fb87aedd7df5cd49 /pcr/polarssl
parent4fe5a1594d68797b8cca926f05f359ed1685c59b (diff)
PolarSSL and Hiawatha
Diffstat (limited to 'pcr/polarssl')
-rw-r--r--pcr/polarssl/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/pcr/polarssl/PKGBUILD b/pcr/polarssl/PKGBUILD
new file mode 100644
index 000000000..9d547d1d1
--- /dev/null
+++ b/pcr/polarssl/PKGBUILD
@@ -0,0 +1,28 @@
+# Maintainer: Mihai Militaru <mihai militaru at xmpp dot ro>
+
+pkgname=polarssl
+pkgver=1.2.8
+pkgrel=1
+pkgdesc="Portable cryptographic and SSL/TLS library"
+arch=('i686' 'x86_64')
+url="http://www.polarssl.org/"
+license=('GPL2')
+source=(http://www.polarssl.org/code/releases/polarssl-"$pkgver"-gpl.tgz)
+sha1sums=('a3e69d4e9302529c5006dcb7d8ecab9c99488036')
+depends=('glibc')
+
+build() {
+ cd "$pkgname"-"$pkgver"
+
+ sed -i 's^CFLAGS +=^CFLAGS += -fPIC^g' library/Makefile
+ sed -i 's#all: static#all: static shared#g' library/Makefile
+
+ make
+}
+
+package() {
+ cd "$pkgname"-"$pkgver"
+
+ make DESTDIR="$pkgdir/usr" install
+ echo "WARNING: in order to run the tests, execute in this directory, after you install the library: cd src/polarssl-$pkgver && make check"
+}