From d1fc3393cca72e8e432f827f7624e38734fad6dc Mon Sep 17 00:00:00 2001 From: davidovski Date: Thu, 9 Jun 2022 14:35:52 +0100 Subject: moved firmware to separate pacakges --- repo/http-parser/http-parser.xibuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 repo/http-parser/http-parser.xibuild (limited to 'repo/http-parser') diff --git a/repo/http-parser/http-parser.xibuild b/repo/http-parser/http-parser.xibuild new file mode 100644 index 0000000..7255229 --- /dev/null +++ b/repo/http-parser/http-parser.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +NAME="http-parser" +DESC="HTTP request/response parser for C" + +MAKEDEPS="" + +PKG_VER=2.9.4 +SOURCE="https://github.com/nodejs/http-parser/archive/v$PKG_VER/http-parser-$PKG_VER.tar.gz" + +build() { + make library +} + +check() { + make test +} + +package() { + make install DESTDIR="$PKG_DEST" PREFIX="/usr" +} + -- cgit v1.2.1