Install last dependency for pkgxx. Install pkgxx and configure it.
This commit is contained in:
parent
87cc064a76
commit
4f5d8f02a2
27
build
27
build
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user