blob: 63362d7cc15befb8fef414c8f0bd076abb4f6868 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: Andrew Sun <adsun701 at gmail dot com>
pkgname=mingw-w64-http-parser
_pkgname=http-parser
pkgver=2.9.4
pkgrel=1
pkgdesc="Parser for HTTP Request/Response written in C (mingw-w64)"
arch=('any')
license=('MIT')
url="https://github.com/nodejs/http-parser"
makedepends=('mingw-w64-gcc')
depends=('mingw-w64-crt')
options=('!strip' '!buildflags' 'staticlibs')
source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/nodejs/http-parser/archive/v${pkgver}.tar.gz")
sha512sums=('b45df7b94d1c51079d44687d0a7f901f44faae51df4e84c7e3fe38f130c2d809d0e7c2a146c57b3723e60732aededc246bf44eadb10a95b710963d641f9fe7cd')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
prepare() {
cd "${srcdir}/${_pkgname}-${pkgver}"
sed -i 's|-Werror||' Makefile
}
build() {
CFLAGS="-O2 -pipe -fno-plt -fexceptions --param=ssp-buffer-size=4 $CFLAGS"
CXXFLAGS="-O2 -pipe -fno-plt -fexceptions --param=ssp-buffer-size=4 $CXXFLAGS"
CPPFLAGS="-D_FORTIFY_SOURCE=2 $CPPFLAGS"
LDFLAGS="-Wl,-O1,--sort-common,--as-needed -fstack-protector $LDFLAGS"
for _arch in ${_architectures}; do
mkdir -p "${srcdir}/build-${_arch}" && pushd "${srcdir}/build-${_arch}"
cp -rf "${srcdir}/${_pkgname}-${pkgver}"/. "${srcdir}/build-${_arch}"
CC=${_arch}-gcc \
AR=${_arch}-ar \
RANLIB=${_arch}-ranlib \
SONAME=libhttp_parser-2.dll \
LIBNAME=libhttp_parser-2.dll \
LDFLAGS+=' -Wl,--out-implib=libhttp_parser.dll.a' \
make -j1 \
library package
popd
done
}
package() {
for _arch in ${_architectures}; do
cd "${srcdir}/build-${_arch}"
mkdir -p ${pkgdir}/usr/${_arch}/{bin,include,lib}
install -Dm644 http_parser.h "${pkgdir}/usr/${_arch}/include/http_parser.h"
cp *.a ${pkgdir}/usr/${_arch}/lib/
cp *.dll ${pkgdir}/usr/${_arch}/bin/
# strip libraries
${_arch}-strip --strip-unneeded "$pkgdir"/usr/${_arch}/bin/*.dll
${_arch}-strip -g "$pkgdir"/usr/${_arch}/lib/*.a
done
}
|