mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 00:48:06 +01:00
15 lines
408 B
Bash
15 lines
408 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# prepare.sh
|
||
|
|
||
|
/bin/echo -e '\x1b[32mUpdating etc/conf...\x1b[0m'
|
||
|
echo XBPS_BUILD_ENVIRONMENT=void-packages-ci >> etc/conf
|
||
|
echo XBPS_ALLOW_RESTRICTED=yes >> etc/conf
|
||
|
|
||
|
/bin/echo -e '\x1b[32mEnabling ethereal chroot-style...\x1b[0m'
|
||
|
echo XBPS_CHROOT_CMD=ethereal >> etc/conf
|
||
|
echo XBPS_ALLOW_CHROOT_BREAKOUT=yes >> etc/conf
|
||
|
|
||
|
/bin/echo -e '\x1b[32mLinking / to /masterdir...\x1b[0m'
|
||
|
ln -s / masterdir
|