comparison src/build-perl.mk @ 4667:c338241afed1

build-perl: new package
author John W. Eaton <jwe@octave.org>
date Thu, 19 Apr 2018 17:21:35 -0400
parents
children a7ea879b0715
comparison
equal deleted inserted replaced
4666:bb748339b351 4667:c338241afed1
1 # This file is part of MXE.
2 # See index.html for further information.
3
4 PKG := build-perl
5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 5.26.1
7 $(PKG)_CHECKSUM :=
8 $(PKG)_SUBDIR := perl-$($(PKG)_VERSION)
9 $(PKG)_FILE := perl-$($(PKG)_VERSION).tar.gz
10 $(PKG)_URL := http://www.cpan.org/src/5.0/$($(PKG)_FILE)
11
12 $(PKG)_DEPS :=
13
14 ifeq ($(MXE_WINDOWS_BUILD),yes)
15 define $(PKG)_BUILD
16 endef
17 else
18 define $(PKG)_BUILD
19 cd '$(1)' && $($(PKG)_CONFIGURE_ENV) './Configure' -s -d -e -Dprefix='$(HOST_PREFIX)' \
20 -D $(CONFIGURE_CPPFLAGS) -D $(CONFIGURE_LDFLAGS) \
21 && $(CONFIGURE_POST_HOOK)
22
23 $(MAKE) -C '$(1)' -j '$(JOBS)' install DESTDIR='$(3)'
24 endef
25 endif