Skip to content

Commit

Permalink
contrib/lighttpd: fix some stuff
Browse files Browse the repository at this point in the history
- missing openssl support
- add more compressors
- add lua
- add webdav props
- devendor xxhash
  • Loading branch information
nekopsykose committed May 27, 2024
1 parent f4e4dcd commit 28cc6eb
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions contrib/lighttpd/template.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,36 @@
pkgname = "lighttpd"
pkgver = "1.4.76"
pkgrel = 0
pkgrel = 1
build_style = "meson"
configure_args = [
"-Dwith_brotli=enabled",
"-Dwith_libdeflate=enabled",
"-Dwith_lua=true",
"-Dwith_openssl=true",
"-Dwith_webdav_props=enabled",
"-Dwith_xxhash=enabled",
"-Dwith_zstd=enabled",
]
hostmakedepends = ["meson", "pkgconf"]
makedepends = ["musl-bsd-headers", "openssl-devel", "pcre2-devel"]
makedepends = [
"brotli-devel",
"libdeflate-devel",
"libxml2-devel",
"lua5.4-devel",
"musl-bsd-headers",
"openssl-devel",
"pcre2-devel",
"sqlite-devel",
"xxhash-devel",
"zlib-devel",
"zstd-devel",
]
checkdepends = ["perl"]
pkgdesc = "Lightweight web server"
maintainer = "yanchan09 <yan@omg.lol>"
license = "BSD-3-Clause"
url = "https://lighttpd.net"
source = f"https://download.lighttpd.net/{pkgname}/releases-{pkgver[:pkgver.rfind('.')]}.x/{pkgname}-{pkgver}.tar.xz"
source = f"https://download.lighttpd.net/lighttpd/releases-{pkgver[:pkgver.rfind('.')]}.x/lighttpd-{pkgver}.tar.xz"
sha256 = "8cbf4296e373cfd0cedfe9d978760b5b05c58fdc4048b4e2bcaf0a61ac8f5011"


Expand Down

0 comments on commit 28cc6eb

Please sign in to comment.