summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 274c9540112ecb0de0ea720a3177d866dda16ab7 (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
# Maintainer: lanthora <lanthora at outlook dot com>
# Maintainer epsilonKNOT <epsilon.aur@epsilonKNOT.xyz>

pkgbase=uwebsockets
pkgname=uwebsockets
pkgver=20.37.0
pkgrel=3
pkgdesc="Simple, secure & standards compliant web server for the most demanding of applications"
url="https://github.com/uNetworking/uWebSockets"
license=('Apache')
arch=('x86_64')
source=("$pkgname-$pkgver.tar.gz::https://github.com/uNetworking/uWebSockets/archive/v$pkgver.tar.gz"
        "uwebsockets.pc")
sha256sums=('ea155453c056477a4650ca86c093712af79b19504b6522454331e74743d9bd37'
            '5433dee099ea6f6fe97ef200cc19aadc71ca5066d7f5238070c25cd040dfb520')
depends=( usockets )

package() {
	cd "$srcdir/uWebSockets-$pkgver"
	install -Dm644 -t "$pkgdir"/usr/include/uWebSockets/ src/*.h
	install -Dm644 "$srcdir"/uwebsockets.pc "$pkgdir"/usr/lib/pkgconfig/uwebsockets.pc
}

#vim: syntax=sh