mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
15 lines
262 B
Bash
Executable File
15 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
cd $PKG_BUILD
|
|
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--disable-shared \
|
|
--enable-static \
|
|
--with-sysroot=$SYSROOT_PREFIX \
|
|
|
|
$MAKEINSTALL
|