mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
12 lines
243 B
Bash
Executable File
12 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
cd $PKG_BUILD
|
|
|
|
[ "$TARGET_ARCH" = "i386" ] && make CC=$TARGET_CC irserver
|
|
[ "$TARGET_ARCH" = "x86_64" ] && make CC=$TARGET_CC irserver64
|
|
[ "$TARGET_ARCH" = "arm" ] && make CC=$TARGET_CC irserver_arm
|
|
|
|
$STRIP $1*
|