diff options
author | davidovski <david@davidovski.xyz> | 2022-01-30 20:22:35 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-30 20:22:35 +0000 |
commit | f1fb2cab5a90c0ea7e24246b8cfb57b48ad879f9 (patch) | |
tree | f641a875a072ab699dfa1c9aa2098afe975be4dd /repo/system/perl.xibuild | |
parent | c8c5a696eb0072cf6e7532d9e7579702aa234ef5 (diff) |
moved perl's configure to its own section
Diffstat (limited to 'repo/system/perl.xibuild')
-rw-r--r-- | repo/system/perl.xibuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/repo/system/perl.xibuild b/repo/system/perl.xibuild index e75246a..146b983 100644 --- a/repo/system/perl.xibuild +++ b/repo/system/perl.xibuild @@ -7,12 +7,14 @@ PKG_VER=5.34.0 SOURCE=https://www.cpan.org/src/5.0/perl-$PKG_VER.tar.gz DESC="The Practical Extraction and Report Language" -build () { +prepare () { export BUILD_ZLIB=False export BUILD_BZIP2=0 sh Configure -des -Dprefix=/usr -Dlibs=-lm -Uloclibpth -Ulocincpth +} +build () { make } |