From 30bd9ba17e57424e0a084e29137ab17e3434abed Mon Sep 17 00:00:00 2001 From: hippoz Date: Wed, 30 Jun 2021 00:28:18 +0300 Subject: [PATCH] [new package] "bison" --- bison/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 bison/Makefile diff --git a/bison/Makefile b/bison/Makefile new file mode 100644 index 0000000..4448401 --- /dev/null +++ b/bison/Makefile @@ -0,0 +1,10 @@ +prepare: + git clone https://mirrors.nav.ro/gnu/binutils/binutils-2.10.1.tar.gz binutils + cd binutils +make: + @./configure --prefix=${PREFIX}/USR + make +install: + make install DESTDIR="${PREFIX}" +uninstall: + make uninstall