Add libwebsockets build.

This commit is contained in:
Darren 'Tadgy' Austin 2022-10-15 22:39:37 +01:00
commit 16aba56876
6 changed files with 412 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# Package details.
PKG_NAME="$(basename "${BASH_SOURCE[0]}" .buildconf)"
PKG_VERSION="4.3.2"
PKG_BUILD="1"
PKG_TAG="${PKG_TAG:-_tadgy}"
PKG_EXT="${PKG_EXT:-txz}"
# Sources - the details in these arrays must all match per indicies.
SRC_DOWNLOADS=("https://github.com/warmcat/$PKG_NAME/archive/refs/tags/v$PKG_VERSION.tar.gz")
SRC_MD5SUMS=("a73519f68c0e617e6bc7f8704903a9fe")
SRC_FILENAMES=("$PKG_NAME-$PKG_VERSION.tar.gz")
SRC_DIRNAMES=("$PKG_NAME-$PKG_VERSION")
# Build configuration.
BUILD_REQUIRES=('libevent' 'libuv' 'openssl')
BUILD_CONFLICTS=()