diff options
Diffstat (limited to 'bigclown-leds')
-rw-r--r-- | bigclown-leds/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/bigclown-leds/Makefile b/bigclown-leds/Makefile index 5533588..40d93fc 100644 --- a/bigclown-leds/Makefile +++ b/bigclown-leds/Makefile @@ -5,10 +5,15 @@ include $(TOPDIR)/rules.mk PKG_NAME:=bigclown-leds -PKG_VERSION:=1.0 +PKG_VERSION:=1.0.1 PKG_RELEASE:=1 PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz> -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) + +GIT_HASH:=a1236a39e7842ed24b3a9c986dba177d02be5114 +PKG_SOURCE_URL:=https://git.cynerd.cz/bigclown-leds/snapshot/ +PKG_SOURCE:=$(PKG_NAME)-$(GIT_HASH).tar.gz +PKG_HASH:=9bd59f33c78d1c56f691dd74ab9c16ad98cd1855caecacdc1724e89eec346f67 +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(GIT_HASH) include $(INCLUDE_DIR)/package.mk @@ -19,9 +24,9 @@ endef define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_DATA) ./files/bigclown-leds $(1)/usr/bin/bigclown-leds + $(INSTALL_DATA) ./bigclown-leds $(1)/usr/bin/bigclown-leds $(INSTALL_DIR) $(1)/etc/init.d - $(INSTALL_BIN) ./files/init $(1)/etc/init.d/bigclown-leds + $(INSTALL_BIN) ./bigclown-leds.init $(1)/etc/init.d/bigclown-leds endef define Build/Compile |