mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 00:30:06 +02:00
Renamed directory Update and rename cyassl-1.6.5.patch to wolfssl-1.6.5.patch Update cyassl-1.6.5.recipe Rename cyassl-1.6.5.recipe to wolfssl-1.6.5.recipe Update and rename cyassl-1.8.0.recipe to wolfssl-1.8.0.recipe Update and rename cyassl-2.0.2.recipe to wolfssl-2.0.2.recipe Update and rename cyassl-2.5.0.recipe to wolfssl-2.5.0.recipe Update wolfssl-2.0.2.recipe Rename cyassl-2.8.0.recipe to wolfssl-2.8.0.recipe Renamed/Moved dev-libs/cyassl to dev-libs/wolfssl
51 lines
875 B
Bash
51 lines
875 B
Bash
SUMMARY="Lightweight yet fully functional embedded SSL implementation"
|
|
DESCRIPTION="lightweight yet fully functional embedded SSL implementation"
|
|
HOMEPAGE="http://yassl.com"
|
|
COPYRIGHT="2006-2010 Sawtooth Consulting Ltd."
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="http://yassl.com/cyassl-1.6.5.tar.gz"
|
|
CHECKSUM_MD5="98c2c6350acf1d089756a1de9ccb9903"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
SOURCE_DIR="cyassl-$portVersion"
|
|
|
|
ARCHITECTURES=""
|
|
|
|
PROVIDES=""
|
|
REQUIRES=""
|
|
|
|
PROVIDES_devel=""
|
|
REQUIRES_devel=""
|
|
|
|
BUILD_REQUIRES=""
|
|
BUILD_PREREQUIRES=""
|
|
|
|
BUILD()
|
|
{
|
|
cd wolfssl-1.6.5
|
|
libtoolize --force --copy --install
|
|
rm acinclude.m4
|
|
rm aclocal.m4
|
|
aclocal
|
|
autoconf
|
|
chmod 755 configure
|
|
automake
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` --enable-shared
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd wolfssl-1.6.5
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd wolfssl-1.6.5
|
|
make check
|
|
cd testsuite
|
|
testsuite
|
|
}
|