summaryrefslogtreecommitdiff
path: root/repo/system/libuv.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/libuv.xibuild')
-rw-r--r--repo/system/libuv.xibuild15
1 files changed, 9 insertions, 6 deletions
diff --git a/repo/system/libuv.xibuild b/repo/system/libuv.xibuild
index b5e65b6..976b2b9 100644
--- a/repo/system/libuv.xibuild
+++ b/repo/system/libuv.xibuild
@@ -1,6 +1,6 @@
#!/bin/sh
-MAKEDEPS="automake autoconf libtool make"
+MAKEDEPS="make "
DEPS="musl"
PKG_VER=1.44.1
@@ -12,12 +12,15 @@ prepare () {
}
build () {
- ./configure --prefix=/usr
- make CFLAGS="$CFLAGS -D__USE_MISC" BUILDTYPE=Release
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --localstatedir=/var
+ make BUILDTYPE=Release
+
}
package () {
- make DESTDIR=$PKG_DEST install
+ make DESTDIR="$PKG_DEST" install
}
-
-