view src/build-perl.mk @ 4680:7471ffc18c61

build-perl, perl: build shared libperl
author John W. Eaton <jwe@octave.org>
date Fri, 20 Apr 2018 17:33:02 -0400
parents a7ea879b0715
children 6b3664df8ea0
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := build-perl
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 5.26.1
$(PKG)_CHECKSUM := 74a0822429508d593513a0dfd6f51a907bad68d0
$(PKG)_SUBDIR   := perl-$($(PKG)_VERSION)
$(PKG)_FILE     := perl-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := http://www.cpan.org/src/5.0/$($(PKG)_FILE)
$(PKG)_DEPS     := 

ifeq ($(BUILD_SHARED),yes)
  $(PKG)_CONFIGURE_ARGS := -Duseshrplib
endif

ifeq ($(MXE_WINDOWS_BUILD),yes)
  define $(PKG)_BUILD
  endef
else
  define $(PKG)_BUILD
    cd '$(1)' \
      && $($(PKG)_CONFIGURE_ENV) './Configure' -s -d -e \
        -Dprefix='$(HOST_PREFIX)' \
        -D $(CONFIGURE_CPPFLAGS) -D $(CONFIGURE_LDFLAGS) \
        $($(PKG)_CONFIGURE_ARGS) \
      && $(CONFIGURE_POST_HOOK)

    $(MAKE) -C '$(1)' -j '$(JOBS)' install DESTDIR='$(3)'
  endef
endif