diff options
author | davidovski <david@davidovski.xyz> | 2022-05-07 13:50:28 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-07 13:50:28 +0100 |
commit | 213021de0aaf5439db7d58ca1447db4ae6af92be (patch) | |
tree | a2adcfe44a186f9a61b92c5ca80d38b6f4017fa0 /repo/system/musl/toolchain-musl.xibuild | |
parent | fd7adb2f3a9d9d239c90742366aec369966a3a03 (diff) |
added tor and xss-lock
Diffstat (limited to 'repo/system/musl/toolchain-musl.xibuild')
-rw-r--r-- | repo/system/musl/toolchain-musl.xibuild | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/repo/system/musl/toolchain-musl.xibuild b/repo/system/musl/toolchain-musl.xibuild new file mode 100644 index 0000000..ed46c6e --- /dev/null +++ b/repo/system/musl/toolchain-musl.xibuild @@ -0,0 +1,15 @@ +#!/bin/sh + +DESC="$DESC - for xibuild toolchain" + +build () { + export CXX=clang++ + export CC=clang + + CC=$CC CXX=$CXX ./configure --prefix=/ + make +} + +package () { + make install DESTDIR=$PKG_DEST +} |