071166c558
Autobuild has a "version bump" checker that sends message to a package maintainer if its declared version does not match the latest one on release-monitoring.org. In case of openpgm the version _is_ the latest one, but a mismatch is caused by including a "release-" prefix into tags on upstream and excluding them on other websites when referring to the package's version. This also fixes sha256 value for the downloaded archive. Signed-off-by: Alexander Lukichev <alexander.lukichev@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
29 lines
885 B
Makefile
29 lines
885 B
Makefile
################################################################################
|
|
#
|
|
# openpgm
|
|
#
|
|
################################################################################
|
|
|
|
OPENPGM_VERSION = 5-2-122
|
|
OPENPGM_SITE = $(call github,steve-o,openpgm,release-$(OPENPGM_VERSION))
|
|
OPENPGM_LICENSE = LGPL-2.1+
|
|
OPENPGM_LICENSE_FILES = openpgm/pgm/LICENSE
|
|
OPENPGM_INSTALL_STAGING = YES
|
|
OPENPGM_SUBDIR = openpgm/pgm
|
|
OPENPGM_AUTORECONF = YES
|
|
|
|
# We need to create the m4 directory to make sure that autoreconf will
|
|
# start calling libtoolize. Otherwise it will start with aclocal and it
|
|
# will fail because the m4 directory doesn't exist.
|
|
define OPENPGM_CREATE_M4_DIR
|
|
mkdir -p $(@D)/$(OPENPGM_SUBDIR)/m4
|
|
endef
|
|
OPENPGM_POST_PATCH_HOOKS += OPENPGM_CREATE_M4_DIR
|
|
|
|
OPENPGM_CONF_ENV = \
|
|
ac_cv_file__proc_cpuinfo=yes \
|
|
ac_cv_file__dev_rtc=no \
|
|
ac_cv_file__dev_hpet=no
|
|
|
|
$(eval $(autotools-package))
|