mirror of
https://github.com/openwrt/luci.git
synced 2025-04-04 01:05:30 +00:00
Adjust PKG_MIRROR_HASH to the filename change due to .zst adoption. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
40 lines
933 B
Makefile
40 lines
933 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=csstidy
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=https://github.com/jow-/csstidy-cpp.git
|
|
PKG_SOURCE_DATE:=2021-06-13
|
|
PKG_SOURCE_VERSION:=707feaec556c40c999514a598b1a1ea5b50826c6
|
|
PKG_MIRROR_HASH:=c90cdb3ff2ecae469d86abf04f5631356b8a913e03f4537c491ea31cde5f0225
|
|
|
|
PKG_LICENSE:=LGPL-2.1
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/csstidy
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=CSSTidy parser and optimiser
|
|
DEPENDS:=+libstdcpp
|
|
endef
|
|
|
|
define Package/csstidy/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/csstidy/csstidy $(1)/usr/bin/
|
|
endef
|
|
|
|
|
|
define Host/Install
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/bin/
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/csstidy/csstidy $(1)/bin/
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|
|
$(eval $(call BuildPackage,csstidy))
|