mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
20 lines
358 B
Bash
Executable File
20 lines
358 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
cd $PKG_BUILD
|
|
|
|
make OPT="$TARGET_CFLAGS" \
|
|
CROSS_COMPILE=${TARGET_PREFIX} \
|
|
HOST=$TARGET_ARCH-linux \
|
|
IDSDIR="/usr/share" \
|
|
ZLIB=no \
|
|
DNS=no \
|
|
PREFIX=/usr \
|
|
|
|
make PREFIX=/usr \
|
|
IDSDIR="/usr/share" \
|
|
DESTDIR=$SYSROOT_PREFIX install-lib
|
|
|
|
./update-pciids.sh || cp $ROOT/$PKG_DIR/pci.ids .
|