Install last dependency for pkgxx. Install pkgxx and configure it.

master
Olivier DOSSMANN 2018-07-31 20:50:32 +02:00
parent 87cc064a76
commit 4f5d8f02a2
1 changed files with 24 additions and 3 deletions

27
build
View File

@ -3,9 +3,30 @@
# Install pkgxx dependancies
echo "> Installing Lua Split…"
luarocks-5.1 install split || exit 1
echo "> Installing build.zsh…"
git clone https://github.com/lukc/build.zsh && \
cd build.zsh && \
make && \
make install && \
cd .. && \
rm -rf build.zsh || exit 1
echo "> Installing pkgxx"
git clone https://github.com/lukc/pkgxx && \
cd pkgxx && \
make && \
make install && \
cp pkgxx.conf.example /etc/pkgxx.conf && \
cd .. && \
rm -rf pkgxx || exit 1
# FIXME: need build.zsh
# Configure pkgxx
echo "> Configure pkgxx"
mkdir -p /opt/pkgxx/dev && \
sed -i -e 's#prefix = .*$#prefix = "/opt/pkgxx/dev"#' \
-e 's#distribution = .*$#distribution = "Alpine"#' \
-e 's#package-manager = .*$#package-manager = "apk"#' \
-e 's#repository-manager = .*$#repository-manager = "apk"#' \
-e '/distribution-codename/d' \
-e 's#provider = .*$#provider = "Dev Team"#' /etc/pkgxx.conf
# FIXME: install pkgxx
# FIXME: configure pkgxx
# FIXME: DL yunoconfig