22 lines
516 B
Plaintext
22 lines
516 B
Plaintext
# Description: Use any linux distribution inside your terminal
|
|
# URL: https://distrobox.privatedns.org/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: docker
|
|
|
|
name=distrobox
|
|
version=1.7.1
|
|
release=1
|
|
source=(https://github.com/89luca89/distrobox/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./install -P $PKG/usr
|
|
if ! prt-get isinst bash-completion; then
|
|
rm -r $PKG/usr/share/bash-completion
|
|
fi
|
|
if ! prt-get isinst zsh; then
|
|
rm -r $PKG/usr/share/zsh
|
|
fi
|
|
}
|