annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4667
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-perl
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 $(PKG)_VERSION := 5.26.1
4672
a7ea879b0715 build-perl: define package checksum
John W. Eaton <jwe@octave.org>
parents: 4667
diff changeset
7 $(PKG)_CHECKSUM := 74a0822429508d593513a0dfd6f51a907bad68d0
4667
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := perl-$($(PKG)_VERSION)
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := perl-$($(PKG)_VERSION).tar.gz
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := http://www.cpan.org/src/5.0/$($(PKG)_FILE)
4680
7471ffc18c61 build-perl, perl: build shared libperl
John W. Eaton <jwe@octave.org>
parents: 4672
diff changeset
11 $(PKG)_DEPS :=
4667
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
4680
7471ffc18c61 build-perl, perl: build shared libperl
John W. Eaton <jwe@octave.org>
parents: 4672
diff changeset
13 ifeq ($(BUILD_SHARED),yes)
7471ffc18c61 build-perl, perl: build shared libperl
John W. Eaton <jwe@octave.org>
parents: 4672
diff changeset
14 $(PKG)_CONFIGURE_ARGS := -Duseshrplib
7471ffc18c61 build-perl, perl: build shared libperl
John W. Eaton <jwe@octave.org>
parents: 4672
diff changeset
15 endif
4667
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 ifeq ($(MXE_WINDOWS_BUILD),yes)
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 define $(PKG)_BUILD
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 endef
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 else
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 define $(PKG)_BUILD
4680
7471ffc18c61 build-perl, perl: build shared libperl
John W. Eaton <jwe@octave.org>
parents: 4672
diff changeset
22 cd '$(1)' \
7471ffc18c61 build-perl, perl: build shared libperl
John W. Eaton <jwe@octave.org>
parents: 4672
diff changeset
23 && $($(PKG)_CONFIGURE_ENV) './Configure' -s -d -e \
7471ffc18c61 build-perl, perl: build shared libperl
John W. Eaton <jwe@octave.org>
parents: 4672
diff changeset
24 -Dprefix='$(HOST_PREFIX)' \
4667
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 -D $(CONFIGURE_CPPFLAGS) -D $(CONFIGURE_LDFLAGS) \
4680
7471ffc18c61 build-perl, perl: build shared libperl
John W. Eaton <jwe@octave.org>
parents: 4672
diff changeset
26 $($(PKG)_CONFIGURE_ARGS) \
7471ffc18c61 build-perl, perl: build shared libperl
John W. Eaton <jwe@octave.org>
parents: 4672
diff changeset
27 && $(CONFIGURE_POST_HOOK)
4667
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 $(MAKE) -C '$(1)' -j '$(JOBS)' install DESTDIR='$(3)'
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 endef
c338241afed1 build-perl: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 endif