kumquat-buildroot/package/libutempter/libutempter.mk
Thomas Petazzoni e59346f7db package/libutempter: fix license information
According to the source file:

  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-12-20 23:38:19 +01:00

28 lines
810 B
Makefile

################################################################################
#
# libutempter
#
################################################################################
LIBUTEMPTER_VERSION = 1.2.1
LIBUTEMPTER_SITE = ftp.altlinux.org/pub/people/ldv/utempter
LIBUTEMPTER_INSTALL_STAGING = YES
LIBUTEMPTER_LICENSE = LGPL-2.1+
LIBUTEMPTER_LICENSE_FILES = COPYING
define LIBUTEMPTER_BUILD_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
endef
define LIBUTEMPTER_INSTALL_STAGING_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) \
$(MAKE) DESTDIR=$(STAGING_DIR) PREFIX=/usr -C $(@D)/ install
endef
define LIBUTEMPTER_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) \
$(MAKE) DESTDIR=$(TARGET_DIR) PREFIX=/usr -C $(@D)/ install
endef
$(eval $(generic-package))