annotate src/libevent.mk @ 4544:abef069ac1d3

update: updated more PKG_UPDATE macros * src/libevent.mk, src/openscenegraph.mk src/pango.mk, src/pangomm.mk, src/proj.mk : update PKG_UPDATE macros
author John D
date Wed, 22 Nov 2017 16:59:33 -0500
parents 13be64f9f16d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2298
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 409
diff changeset
3
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := libevent
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
5 $(PKG)_IGNORE :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3048
diff changeset
6 $(PKG)_VERSION := 2.0.20
2705
2dad6359bc72 update package libevent
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
7 $(PKG)_CHECKSUM := 20bb4a1a296ac93c08dfc32ae19ab874cab67a0c
1095
e878941387e3 upgrade packages curl freetype gcc glew gnutls gst* libarchive libevent libgcrypt pcre sqlite w32api
Mark Brand <mabrand@mabrand.nl>
parents: 1065
diff changeset
8 $(PKG)_SUBDIR := libevent-$($(PKG)_VERSION)-stable
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9 $(PKG)_FILE := libevent-$($(PKG)_VERSION)-stable.tar.gz
2007
ee2cb33fb924 update package libevent
Mark Brand <mabrand@mabrand.nl>
parents: 1960
diff changeset
10 $(PKG)_URL := https://github.com/downloads/$(PKG)/$(PKG)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
11 $(PKG)_DEPS :=
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
4544
abef069ac1d3 update: updated more PKG_UPDATE macros
John D
parents: 3480
diff changeset
14 $(WGET) -q -O- 'https://github.com/libevent/libevent/tags' | \
abef069ac1d3 update: updated more PKG_UPDATE macros
John D
parents: 3480
diff changeset
15 $(SED) -n 's|.*releases/tag/release-\([^-]*\)-stable.*|\1|p' | $(SORT) -V | \
abef069ac1d3 update: updated more PKG_UPDATE macros
John D
parents: 3480
diff changeset
16 tail -1
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2705
diff changeset
22 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
23 --prefix='$(HOST_PREFIX)'
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 $(MAKE) -C '$(1)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= defexec_DATA=
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 endef