Added license for build scripts, added lazybox package

This commit is contained in:
Ella-0 2021-01-02 18:37:56 +00:00
parent bf895e9cb6
commit 8efed850a6
3 changed files with 50 additions and 0 deletions

35
pkgs/lazybox/build.sh Normal file
View file

@ -0,0 +1,35 @@
pkgver=main
pkgname=lazybox
pkgrel=1
bad=""
ext="dev"
fetch() {
mkdir $pkgname-$pkgver
cd $pkgname-$pkgver
cp ../../../../lazy*.sh .
cp ../../../../LICENSE .
}
build() {
cd $pkgname-$pkgver
echo "Nothing to do"
}
package() {
cd $pkgname-$pkgver
install -d $pkgdir/bin
install -Dm755 lazy.sh $pkgdir/bin/lazy
}
package_dev() {
cd $pkgname-$pkgver
install -d $pkgdir/bin
install -Dm755 lazypkg.sh $pkgdir/bin/lazypkg
}
license() {
cd $pkgname-$pkgver
cat LICENSE
}