fix misuse of git and add curl package
This commit is contained in:
parent
82f1f5aaa7
commit
2bfbf11266
3 changed files with 16 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
prepare:
|
||||
git clone https://mirrors.nav.ro/gnu/binutils/binutils-2.10.1.tar.gz binutils
|
||||
wget -O binutils.tar.gz https://mirrors.nav.ro/gnu/binutils/binutils-2.10.1.tar.gz
|
||||
tar -xf binutils.tar.gz
|
||||
cd binutils
|
||||
make:
|
||||
@../configure --prefix=${PREFIX}/usr \
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
prepare:
|
||||
git clone https://mirrors.nav.ro/gnu/bison/bison-1.25.tar.gz bison
|
||||
wget -O bison.tar.gz https://mirrors.nav.ro/gnu/bison/bison-1.25.tar.gz
|
||||
tar -xf bison.tar.gz
|
||||
cd bison
|
||||
make:
|
||||
@./configure --prefix=${PREFIX}/USR
|
||||
@./configure --prefix=${PREFIX}/usr
|
||||
make
|
||||
install:
|
||||
make install DESTDIR="${PREFIX}"
|
||||
|
|
11
curl/Makefile
Normal file
11
curl/Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
prepare:
|
||||
wget -O curl.tar.gz https://curl.se/download/curl-7.77.0.tar.gz
|
||||
tar -xf curl.tar.gz
|
||||
cd curl
|
||||
make:
|
||||
@./configure --prefix=${PREFIX}/usr --with-openssl
|
||||
make
|
||||
install:
|
||||
make install DESTDIR="${PREFIX}"
|
||||
uninstall:
|
||||
make uninstall
|
Loading…
Reference in a new issue