Files
Arch-R/packages/network/libproxy/build

24 lines
432 B
Bash
Executable File

#!/bin/sh
. config/options
$SCRIPTS/build toolchain
cd $BUILD/$1*
ac_cv_func_malloc_0_nonnull=yes \
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--enable-shared \
make
$STRIP src/bin/.libs/proxy
$STRIP src/lib/.libs/*.so*
$STRIP src/plugins/.libs/*.so*
$MAKEINSTALL