2021-07-12 23:34:41 +03:00
|
|
|
wget https://ftp.gnu.org/gnu/pth/pth-2.0.7.tar.gz
|
|
|
|
tar -xf pth-2.0.7.tar.gz
|
2021-07-13 02:13:05 +03:00
|
|
|
cd pth-2.0.7
|
2021-07-12 23:34:41 +03:00
|
|
|
sed -i 's#$(LOBJS): Makefile#$(LOBJS): pth_p.h Makefile#' Makefile.in
|
|
|
|
./configure --prefix=/usr --disable-static --mandir=/usr/share/man
|
|
|
|
make
|
|
|
|
make install &&
|
|
|
|
install -v -m755 -d /usr/share/doc/pth-2.0.7 &&
|
|
|
|
install -v -m644 README PORTING SUPPORT TESTS \
|
|
|
|
/usr/share/doc/pth-2.0.7
|
|
|
|
|