mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
29 lines
516 B
Bash
Executable File
29 lines
516 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
|
|
#UTILS="firmware dvb_device_name ata_id scsi_id edd_id path_id usb_id volume_id"
|
|
#for i in $UTILS; do
|
|
# EXTRAS="$EXTRAS extras/$i"
|
|
#done
|
|
|
|
cd $PKG_BUILD
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static \
|
|
--enable-shared \
|
|
|
|
|
|
make
|
|
|
|
$STRIP udev/udevd
|
|
$STRIP udev/udevadm
|
|
|
|
make DESTDIR=$SYSROOT_PREFIX install
|
|
|