0
0
mirror of https://github.com/openwrt/packages.git synced 2025-02-07 06:59:51 +00:00
packages/utils/lolcat/Makefile
Rui Salvaterra 3f52c7e59a lolcat: bump to 1.5
No changelog, but only a single commit since last version, fixing uncoloured stderr
interleaved with coloured stdout.

Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
2024-07-08 16:49:22 -07:00

30 lines
741 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=lolcat
PKG_VERSION:=1.5
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/jaseg/lolcat/tar.gz/refs/tags/v$(PKG_VERSION)?
PKG_HASH:=2af79bed90e0bda52ae500d16e7e7022037fad10c487c317e7f0ff17ec4b14f5
PKG_MAINTAINER:=Rui Salvaterra <rsalvaterra@gmail.com>
PKG_LICENSE:=WTFPL
PKG_LICENSE_FILES:=LICENSE
include $(INCLUDE_DIR)/package.mk
define Package/lolcat
SECTION:=utils
CATEGORY:=Utilities
TITLE:=A cat variant with rainbow colour output
URL:=https://github.com/jaseg/lolcat
endef
define Package/lolcat/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/lolcat $(1)/usr/bin/
endef
$(eval $(call BuildPackage,lolcat))