blob: b52cbab19b8636bb72a309f7583d3dda2eb1fc2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: txtsd <aur.archlinux@ihavea.quest>
# Maintainer: Score_Under <seejay.11@gmail.com>
# Contributor: lanthora <lanthora at outlook dot com>
# Contributor epsilonKNOT <epsilon.aur@epsilonKNOT.xyz>
pkgname=uwebsockets
_pkgname=uWebSockets
pkgver=20.70.0
pkgrel=1
pkgdesc='Simple, secure & standards compliant web server for the most demanding of applications'
arch=(any)
url='https://github.com/uNetworking/uWebSockets'
license=('Apache-2.0')
depends=(usockets)
source=(
"${pkgname}-${pkgver}.tar.gz::https://github.com/uNetworking/uWebSockets/archive/v${pkgver}.tar.gz"
uwebsockets.pc
)
sha256sums=('39a7e32182df2da02955ab1c1681af9710c82115075f4caabb8689a2c04460b9'
'5433dee099ea6f6fe97ef200cc19aadc71ca5066d7f5238070c25cd040dfb520')
package() {
cd "${_pkgname}-${pkgver}"
install -Dm644 src/*.h -t "${pkgdir}/usr/include/${_pkgname}/"
install -Dm644 "${srcdir}/uwebsockets.pc" "${pkgdir}/usr/lib/pkgconfig/uwebsockets.pc"
}
|