2014-01-22 15:51:26 +00:00
|
|
|
# Copyright (C) 2013 Nils Schneider <nils at nilsschneider.net>
|
|
|
|
# This is free software, licensed under the Apache 2.0 license.
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
PKG_NAME:=gluon-web-theme
|
2014-01-22 15:51:26 +00:00
|
|
|
PKG_VERSION:=0.1
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
2016-10-08 22:18:45 +00:00
|
|
|
include ../gluon.mk
|
2014-01-22 15:51:26 +00:00
|
|
|
|
2016-07-10 18:08:44 +00:00
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
define Package/gluon-web-theme
|
2014-01-22 15:51:26 +00:00
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
2017-02-08 21:19:24 +00:00
|
|
|
TITLE:=gluon-web theme
|
2016-08-27 13:14:16 +00:00
|
|
|
DEPENDS:=+pretty-hostname
|
2014-01-22 15:51:26 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
define Package/gluon-web-theme/install
|
2014-01-22 15:51:26 +00:00
|
|
|
$(CP) ./files/* $(1)/
|
|
|
|
endef
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
$(eval $(call BuildPackage,gluon-web-theme))
|