mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 19:50:05 +02:00
libwebsockets: Initial recipe, with release 3.0.0 (#2716)
This commit is contained in:
93
net-libs/libwebsockets/libwebsockets-3.0.0.recipe
Normal file
93
net-libs/libwebsockets/libwebsockets-3.0.0.recipe
Normal file
@@ -0,0 +1,93 @@
|
||||
SUMMARY="C library for lightweight websocket clients and servers"
|
||||
DESCRIPTION="Libwebsockets (LWS) is a flexible, lightweight pure C library \
|
||||
for implementing modern network protocols easily with a tiny footprint, \
|
||||
using a nonblocking event loop."
|
||||
HOMEPAGE="https://libwebsockets.org/"
|
||||
COPYRIGHT="2010-2018 Andy Green"
|
||||
LICENSE="GNU LGPL v2.1"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://github.com/warmcat/libwebsockets/archive/v$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="a6b611c212c52f161f70556339fdaa199b7e9b6a167c4638e086d19db75d6290"
|
||||
SOURCE_FILENAME="libwebsockets-$portVersion.tar.gz"
|
||||
SOURCE_DIR="libwebsockets-$portVersion"
|
||||
|
||||
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
|
||||
libVersion=13
|
||||
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
||||
|
||||
PROVIDES="
|
||||
libwebsockets$secondaryArchSuffix = $portVersion
|
||||
lib:libwebsockets$secondaryArchSuffix = $libVersionCompat
|
||||
"
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
lib:libcrypto$secondaryArchSuffix
|
||||
lib:libssl$secondaryArchSuffix
|
||||
lib:libz$secondaryArchSuffix
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
libwebsockets${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libwebsockets$secondaryArchSuffix = $libVersionCompat
|
||||
"
|
||||
REQUIRES_devel="
|
||||
libwebsockets$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
devel:libcrypto$secondaryArchSuffix
|
||||
devel:libssl$secondaryArchSuffix
|
||||
devel:libz$secondaryArchSuffix
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:gcc$secondaryArchSuffix
|
||||
cmd:cmake
|
||||
cmd:make
|
||||
cmd:openssl
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
mkdir -p build && cd build
|
||||
|
||||
cmake \
|
||||
-DCMAKE_INSTALL_PREFIX="$prefix" \
|
||||
-DCMAKE_BUILD_TYPE=release \
|
||||
-DLWS_INSTALL_INCLUDE_DIR="$includeDir" \
|
||||
-DLWS_INSTALL_LIB_DIR="$libDir" \
|
||||
-DLWS_WITHOUT_EXTENSIONS=OFF \
|
||||
-DLWS_WITHOUT_TESTAPPS=ON \
|
||||
-DLWS_WITH_HTTP2=ON \
|
||||
-DLWS_WITH_CGI=ON \
|
||||
-DLWS_IPV6=ON \
|
||||
-DLWS_WITH_ZIP_FOPS=ON \
|
||||
-DLWS_WITH_RANGES=ON \
|
||||
-DLWS_WITH_ACME=ON \
|
||||
-DLWS_WITH_SERVER_STATUS=ON \
|
||||
..
|
||||
make $jobArgs
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
cd build
|
||||
make install
|
||||
|
||||
prepareInstalledDevelLib libwebsockets
|
||||
fixPkgconfig
|
||||
|
||||
# dirty hack until we find a better fix
|
||||
if [ -n "$secondaryArchSuffix" ]; then
|
||||
mkdir -p "$libDir"
|
||||
mv "$prefix"/lib/cmake "$libDir"
|
||||
mv "$prefix"/lib/pkgconfig "$developLibDir"
|
||||
fi
|
||||
|
||||
packageEntries devel \
|
||||
"$developDir" \
|
||||
"$libDir"/cmake
|
||||
}
|
||||
Reference in New Issue
Block a user