diff options
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | pkg/openbsd/gen.lua | 8 | ||||
| -rw-r--r-- | sets.lua | 1 |
3 files changed, 3 insertions, 9 deletions
@@ -53,10 +53,11 @@ up from the following: * [suckless](http://core.suckless.org/) - sbase, ubase, sinit, sdhcp * [openbsd](http://openbsd.org/) - - pax, yacc, fmt, diff, patch, doas + - pax, fmt, diff, patch, doas * [plan9port](http://swtch.com/plan9port/) - rc, sam * [awk](http://github.com/onetrueawk/awk/) +* [byacc](https://invisible-island.net/byacc/byacc.html) * [bzip2](http://bzip.org/) * [bc](https://github.com/gavinhoward/bc) * [curl](https://curl.haxx.se/) diff --git a/pkg/openbsd/gen.lua b/pkg/openbsd/gen.lua index 8e6f77ef..ab9578f8 100644 --- a/pkg/openbsd/gen.lua +++ b/pkg/openbsd/gen.lua @@ -109,12 +109,4 @@ sub('rsync.ninja', function() man{'usr.bin/rsync/rsync.1', 'usr.bin/rsync/rsync.5', 'usr.bin/rsync/rsyncd.5'} end) --- yacc -exe('yacc', [[usr.bin/yacc/( - closure.c error.c lalr.c lr0.c main.c mkpar.c output.c reader.c - skeleton.c symtab.c verbose.c warshall.c -) libbsd.a]]) -file('bin/yacc', '755', '$outdir/yacc') -man{'usr.bin/yacc/yacc.1'} - fetch 'local' @@ -2,6 +2,7 @@ return { core={ 'awk', 'bc', + 'byacc', 'bzip2', 'curl', 'e2fsprogs', |
