diff options
author | davidovski <david@davidovski.xyz> | 2022-03-10 23:01:07 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-10 23:01:07 +0000 |
commit | 2bda0d54b37dd3ebf7917c3a58c0404d21afe7f6 (patch) | |
tree | 36a97971d0f9c6151f36b333383bb985289f23e3 /repo/system/libuv.xibuild | |
parent | 08c8891c20131576640f30cc40fcdbc57a497957 (diff) |
shell will now default to dash asap
Diffstat (limited to 'repo/system/libuv.xibuild')
-rw-r--r-- | repo/system/libuv.xibuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/system/libuv.xibuild b/repo/system/libuv.xibuild new file mode 100644 index 0000000..b5e65b6 --- /dev/null +++ b/repo/system/libuv.xibuild @@ -0,0 +1,23 @@ +#!/bin/sh + +MAKEDEPS="automake autoconf libtool make" +DEPS="musl" + +PKG_VER=1.44.1 +SOURCE=https://dist.libuv.org/dist/v$PKG_VER/libuv-v$PKG_VER.tar.gz +DESC="Cross-platform asychronous I/O" + +prepare () { + sh autogen.sh +} + +build () { + ./configure --prefix=/usr + make CFLAGS="$CFLAGS -D__USE_MISC" BUILDTYPE=Release +} + +package () { + make DESTDIR=$PKG_DEST install +} + + |