Merge pull request #843 from jam7/update/perl

Change perl.rb to install manual files correctly
This commit is contained in:
lyxell
2017-07-03 01:57:14 +02:00
committed by GitHub

View File

@@ -12,7 +12,8 @@ class Perl < Package
def self.build
# Use system zlib and bzip2
# Create shared library
system "BUILD_ZLIB=False BUILD_BZIP2=0 ./Configure -de -Duseshrplib"
# Install manual files into /usr/local/share/man/man* even if groff is not installed.
system "BUILD_ZLIB=False BUILD_BZIP2=0 ./Configure -de -Duseshrplib -Dman1dir=#{CREW_PREFIX}/share/man/man1 -Dman3dir=#{CREW_PREFIX}/share/man/man3"
system "make"
end