iglunix/lazypkg.sh

81 lines
1.4 KiB
Bash
Raw Normal View History

2020-12-27 16:34:08 +00:00
#!/bin/dash
. ./build.sh
dir=$(pwd)
mkdir -p src
cd src
srcdir=$(pwd)
fetch
cd $srcdir
build
cd $srcdir
echo "
. $dir/build.sh
mkdir -p $dir/out/$pkgname
pkgdir=$dir/out/$pkgname package
mkdir -p $dir/out/$pkgname/lib/lazypkg
cat > $dir/out/$pkgname/lib/lazypkg/$pkgname << EOF
[pkg]
name=$pkgname
ver=$pkgver
[license]
EOF
chmod 644 $dir/out/$pkgname/lib/lazypkg/$pkgname
cd $srcdir
license >> $dir/out/$pkgname/lib/lazypkg/$pkgname
echo >> $dir/out/$pkgname/lib/lazypkg/$pkgname
echo [fs] >> $dir/out/$pkgname/lib/lazypkg/$pkgname
cd $dir/out/$pkgname/
find * >> $dir/out/$pkgname/lib/lazypkg/$pkgname
cd $dir/out/$pkgname
tar -cJf ../$pkgname.$pkgver.tar.xz *
echo $ext | tr ':' '\n' | while read e; do
echo \$e
cd $srcdir
mkdir -p $dir/out/$pkgname-\$e
pkgdir=$dir/out/$pkgname-\$e
package_\$e
mkdir -p $dir/out/$pkgname-\$e/lib/lazypkg
cat > $dir/out/$pkgname-\$e/lib/lazypkg/$pkgname-\$e << EOF
[pkg]
name=$pkgname-\$e
ver=$pkgver
[license]
EOF
chmod 644 $dir/out/$pkgname-\$e/lib/lazypkg/$pkgname-\$e
cd $srcdir
license >> $dir/out/$pkgname-\$e/lib/lazypkg/$pkgname-\$e
echo >> $dir/out/$pkgname-\$e/lib/lazypkg/$pkgname-\$e
echo [fs] >> $dir/out/$pkgname-\$e/lib/lazypkg/$pkgname-\$e
cd $dir/out/$pkgname-\$e
find * >> $dir/out/$pkgname-\$e/lib/lazypkg/$pkgname-\$e
cd $dir/out/$pkgname-\$e
tar -cJf ../$pkgname-\$e.$pkgver.tar.xz *
done
" | fakeroot sh
cd $dir