summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7e9dc972be361f068b3349f172cd3a55523a1805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer epsilonKNOT <epsilon.aur@epsilonKNOT.xyz>

pkgbase=uwebsockets
pkgname=uwebsockets
pkgver=18.17.0
pkgrel=1
pkgdesc="Simple, secure & standards compliant web server for the most demanding of applications"
url="https://github.com/uNetworking/uWebSockets"
license=('Apache')
arch=('any')
source=( "${pkgname}-${pkgver}.tar.gz::https://github.com/uNetworking/uWebSockets/archive/v${pkgver}.tar.gz" )
md5sums=('ae1dffd2fe19b78969c5b41d31e26310')
depends=( usockets )

package() {
	cd "uWebSockets-${pkgver}"
	mkdir -p "${pkgdir}"/usr/include/uWebSockets
	cp -a src/. "${pkgdir}"/usr/include/uWebSockets
}

#vim: syntax=sh