mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
25 lines
604 B
Makefile
25 lines
604 B
Makefile
################################################################################
|
|
#
|
|
# lowdown
|
|
#
|
|
################################################################################
|
|
|
|
LOWDOWN_VERSION = 1.4.0
|
|
LOWDOWN_SITE = https://kristaps.bsd.lv/lowdown/snapshots
|
|
LOWDOWN_LICENSE = ISC
|
|
LOWDOWN_LICENSE_FILES = LICENSE.md
|
|
|
|
define LOWDOWN_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_CONFIGURE_OPTS) ./configure)
|
|
endef
|
|
|
|
define LOWDOWN_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define LOWDOWN_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -t $(TARGET_DIR)/usr/bin -D -m 0755 $(@D)/lowdown
|
|
endef
|
|
|
|
$(eval $(generic-package))
|