2021-09-22 03:34:12 +00:00
|
|
|
# Maintainer: The-EDev <farook@the-e-dev.com>
|
|
|
|
pkgname=crow
|
2021-09-22 03:36:08 +00:00
|
|
|
pkgver=master
|
2021-09-22 03:34:12 +00:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A Fast and Easy to use C++ microframework for the web."
|
|
|
|
arch=(any)
|
|
|
|
url="https://crowcpp.org"
|
|
|
|
license=('custom:BSD-3-Clause')
|
2022-06-06 16:23:11 +00:00
|
|
|
depends=('asio')
|
2021-09-22 03:34:12 +00:00
|
|
|
optdepends=('openssl: HTTPS support' 'zlib: HTTP compression support' 'cmake: Choose this if you plan on using CMake for your Crow project')
|
|
|
|
conflicts=("$pkgname-git")
|
|
|
|
changelog='changelog.md'
|
|
|
|
source=("https://github.com/CrowCpp/$pkgname/releases/download/v$pkgver/crow-v$pkgver.tar.gz")
|
|
|
|
md5sums=('SKIP')
|
|
|
|
sha256sums=('SKIP')
|
|
|
|
|
|
|
|
package() {
|
2021-09-22 03:38:06 +00:00
|
|
|
echo "installing to \"$pkgdir/usr/local/\""
|
2021-09-22 03:34:12 +00:00
|
|
|
mkdir -p "$pkgdir/usr/local/include"
|
|
|
|
mkdir -p "$pkgdir/usr/local/lib"
|
2021-09-22 03:38:06 +00:00
|
|
|
cp -r "include" "$pkgdir/usr/local"
|
|
|
|
cp -r "lib" "$pkgdir/usr/local"
|
2021-09-22 03:34:12 +00:00
|
|
|
}
|