2019-05-14 14:05:50 -06:00
|
|
|
#!/bin/sh -e
|
2019-05-13 08:32:56 -06:00
|
|
|
|
2019-05-10 09:16:22 -06:00
|
|
|
BUILD_ZLIB=0
|
|
|
|
BUILD_BZIP2=0
|
|
|
|
|
|
|
|
./Configure \
|
|
|
|
-des \
|
|
|
|
-Dcccdlflags='-fPIC' \
|
|
|
|
-Dcccdlflags='-fPIC' \
|
|
|
|
-Dccdlflags='-rdynamic' \
|
|
|
|
-Dprefix=/usr \
|
|
|
|
-Dprivlib=/usr/share/perl5/core_perl \
|
|
|
|
-Darchlib=/usr/lib/perl5/core_perl \
|
|
|
|
-Dvendorprefix=/usr \
|
|
|
|
-Dvendorlib=/usr/share/perl5/vendor_perl \
|
|
|
|
-Dvendorarch=/usr/lib/perl5/vendor_perl \
|
|
|
|
-Dsiteprefix=/usr/local \
|
|
|
|
-Dsitelib=/usr/local/share/perl5/site_perl \
|
|
|
|
-Dsitearch=/usr/local/lib/perl5/site_perl \
|
|
|
|
-Dlocincpth=' ' \
|
|
|
|
-Doptimize="$CFLAGS" \
|
|
|
|
-Duselargefiles \
|
|
|
|
-Dusethreads \
|
|
|
|
-Duseshrplib \
|
|
|
|
-Dd_semctl_semun \
|
|
|
|
-Dman1dir=/usr/share/man/man1 \
|
|
|
|
-Dman3dir=/usr/share/man/man3 \
|
|
|
|
-Dinstallman1dir=/usr/share/man/man1 \
|
|
|
|
-Dinstallman3dir=/usr/share/man/man3 \
|
|
|
|
-Dman1ext='1' \
|
|
|
|
-Dman3ext='3pm' \
|
|
|
|
-Dcf_by='KISS' \
|
|
|
|
-Ud_csh \
|
|
|
|
-Dusenm
|
|
|
|
|
|
|
|
make
|
2019-05-13 06:37:14 -06:00
|
|
|
make DESTDIR="$1" install
|