Added bmake and byacc

This commit is contained in:
Ella-0 2020-12-27 17:36:57 +00:00
parent cbbe7641e9
commit 3c2f4acc23
3 changed files with 79 additions and 0 deletions

36
pkgs/bmake/build.sh Normal file
View file

@ -0,0 +1,36 @@
pkgver=20201212
pkgname=bmake
bad=""
ext="doc"
fetch() {
curl http://www.crufty.net/ftp/pub/sjg/bmake-20201212.tar.gz -o $pkgname-$pkgver.tar.gz
tar -xf $pkgname-$pkgver.tar.gz
mv $pkgname $pkgname-$pkgver
cd $pkgname-$pkgver
patch ./boot-strap < ../../no-test.patch
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/
sh ./make-bootstrap.sh
}
package() {
cd $pkgname-$pkgver
./bmake -m ./mk install DESTDIR=$pkgdir
rm -r $pkgdir/share/man
}
package_doc() {
cd $pkgname-$pkgver
./bmake -m ./mk install DESTDIR=$pkgdir
rm -r $pkgdir/bin
rm -r $pkgdir/share/mk
}
license() {
cd $pkgname-$pkgver
cat LICENSE
}

11
pkgs/bmake/no-test.patch Normal file
View file

@ -0,0 +1,11 @@
--- ../bmakeb/bmake/boot-strap 2020-11-13 21:47:25.000000000 +0000
+++ boot-strap 2020-12-27 17:26:13.126598658 +0000
@@ -431,7 +431,7 @@
op_test() {
[ -x bmake ] || op_build
- Bmake test || exit 1
+ #Bmake test || exit 1
}
op_clean() {

32
pkgs/byacc/build.sh Normal file
View file

@ -0,0 +1,32 @@
pkgver=20200910
pkgname=byacc
bad=""
ext="doc"
fetch() {
curl https://invisible-island.net/datafiles/release/byacc.tar.gz -o $pkgname-$pkgver.tar.gz
tar -xf $pkgname-$pkgver.tar.gz
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/ --enable-btyacc
make
}
package() {
cd $pkgname-$pkgver
make install DESTDIR=$pkgdir
rm -r $pkgdir/share
}
package_doc() {
cd $pkgname-$pkgver
make install DESTDIR=$pkgdir
rm -r $pkgdir/bin
}
license() {
cd $pkgname-$pkgver
cat LICENSE
}