Remove lazybox package

This commit is contained in:
Ella-0 2021-02-06 12:02:41 +00:00
parent d655cf87a9
commit e6adc6ff76
3 changed files with 0 additions and 74 deletions

View file

@ -1,40 +0,0 @@
pkgver=main
pkgname=lazybox
pkgrel=1
deps="busybox:toybox"
bad=""
ext="dev"
fetch() {
mkdir $pkgname-$pkgver
cp ../profile.sh .
cp ../motd .
cd $pkgname-$pkgver
cp ../../../../lazy*.sh .
cp ../../../../LICENSE .
}
build() {
cd $pkgname-$pkgver
echo "Nothing to do"
}
package() {
cd $pkgname-$pkgver
install -d $pkgdir/etc/
install -Dm644 ../profile.sh $pkgdir/etc/profile
install -Dm644 ../motd $pkgdir/etc/
install -d $pkgdir/usr/sbin
install -Dm755 lazy.sh $pkgdir/usr/sbin/lazy
}
package_dev() {
cd $pkgname-$pkgver
install -d $pkgdir/usr/bin
install -Dm755 lazypkg.sh $pkgdir/usr/bin/lazypkg
}
license() {
cd $pkgname-$pkgver
cat LICENSE
}

View file

@ -1,14 +0,0 @@
|
| |
|
| ________
| /\ | \
/ \ | \ |
/ \ \ |
/ \________\
\ / /
\ / /
\ / /
\/________/
LazyBox: Drop the Packages

View file

@ -1,20 +0,0 @@
# Setup Path
export PATH=/usr/sbin:/usr/bin:/sbin:/bin
export POSIX_ME_HARDER=1
# Setup Shell Prompt
if [ "$(whoami)" == "root" ]; then
export PS1=$(hostname)"# "
else
export PS1=$(hostname)"$ "
fi
# Replace TERM with xterm because netbsd-curses doesn't include alacritty
if [ "$TERM" == "alacritty" ]; then
export TERM=xterm
fi
# load profile
for file in $(ls /etc/profile.d); do
. /etc/profile.d/$file
done