mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
28 lines
620 B
Bash
Executable File
28 lines
620 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
cd $PKG_BUILD
|
|
gt_cv_func_gnugettext1_libintl=no \
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--disable-tls \
|
|
--without-ncurses \
|
|
--disable-libmount \
|
|
--disable-mesg \
|
|
--disable-partx \
|
|
--without-slang \
|
|
--without-utempter \
|
|
--without-pam \
|
|
--without-selinux \
|
|
--without-audit
|
|
|
|
make -C mount
|
|
make -C shlibs
|
|
make -C misc-utils blkid
|
|
|
|
$MAKEINSTALL -C shlibs
|