mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
14 lines
325 B
Bash
Executable File
14 lines
325 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
mkdir -p $INSTALL/usr/bin
|
|
cp $PKG_DIR/scripts/installer $INSTALL/usr/bin
|
|
|
|
mkdir -p $INSTALL/etc
|
|
if [ -f $PROJECT_DIR/$PROJECT/installer/installer.conf ]; then
|
|
cp $PROJECT_DIR/$PROJECT/installer/installer.conf $INSTALL/etc
|
|
else
|
|
cp $PKG_DIR/config/installer.conf $INSTALL/etc
|
|
fi
|