summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2016-05-13 22:03:08 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2016-05-13 22:03:08 -0500
commit8d023fa2394fb184d358be50179163fd396e072c (patch)
tree979367c87ba412c865560e5efa1a90adcf14d40d /pcr
parent03ae409a37f7566a57d447983a0be7f23a48ac7a (diff)
downloadabslibre-8d023fa2394fb184d358be50179163fd396e072c.tar.gz
abslibre-8d023fa2394fb184d358be50179163fd396e072c.tar.bz2
abslibre-8d023fa2394fb184d358be50179163fd396e072c.zip
Removing polarssl. Use mbedtls instead
Diffstat (limited to 'pcr')
-rw-r--r--pcr/polarssl/PKGBUILD28
1 files changed, 0 insertions, 28 deletions
diff --git a/pcr/polarssl/PKGBUILD b/pcr/polarssl/PKGBUILD
deleted file mode 100644
index 4667b004d..000000000
--- a/pcr/polarssl/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# Maintainer (Arch): 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' 'mips64el')
-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"
-}