2012-05-30 22:29:53 +00:00
|
|
|
# Maintainer: Mihai Militaru <mihai militaru at xmpp dot ro>
|
|
|
|
|
|
|
|
pkgname=polarssl
|
2012-09-17 23:41:40 +00:00
|
|
|
pkgver=1.1.4
|
2012-05-30 22:29:53 +00:00
|
|
|
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)
|
2012-09-17 23:41:40 +00:00
|
|
|
sha1sums=('3dd10bd1a8f7f58e0ef8c91cfa5ea7efd5d5f4bc')
|
2012-05-30 22:29:53 +00:00
|
|
|
depends=('glibc')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$pkgname"-"$pkgver"
|
|
|
|
|
|
|
|
sed -i 's^# CFLAGS += -fPIC^CFLAGS += -fPIC^g' library/Makefile
|
|
|
|
sed -i 's#all: static#all: static shared#g' library/Makefile
|
|
|
|
|
|
|
|
make
|
|
|
|
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-<version> && make check'
|
|
|
|
}
|