aboutsummaryrefslogtreecommitdiff
path: root/utils/lm-sensors
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2016-07-07 12:10:06 +0200
committerJo-Philipp Wich <jo@mein.io>2016-07-07 12:10:09 +0200
commita6368066b3c89c2dbd327e174c3f204f1132cd98 (patch)
tree8fec44f685badc550d84d0defdd7da4f540bab9b /utils/lm-sensors
parentfc9182dd2055f68874371f8028189ba3e8082aa6 (diff)
lm-sensors: fix missing PKG_SOURCE variable (#2933)
Fix missing `PKG_SOURCE` variable leading to a `Download/default is missing the FILE field` error in the buildroot. Also remove now uneeded variable as the default one matches the git clone structure. Finally use the common variable assignment style for `PKG_SOURCE_PROTO` and `PKG_SOURCE_VERSION`. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'utils/lm-sensors')
-rw-r--r--utils/lm-sensors/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/lm-sensors/Makefile b/utils/lm-sensors/Makefile
index 606a77e76..b11349c34 100644
--- a/utils/lm-sensors/Makefile
+++ b/utils/lm-sensors/Makefile
@@ -11,14 +11,14 @@ PKG_NAME:=lm-sensors
PKG_VERSION:=3.3.5
PKG_RELEASE:=3
-PKG_SOURCE_PROTO=git
+PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/groeck/lm-sensors.git
-PKG_SOURCE_VERSION=f8cdcc35bff0785aecf49d9a8484a71ce3ebee4f
+PKG_SOURCE_VERSION:=f8cdcc35bff0785aecf49d9a8484a71ce3ebee4f
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
PKG_LICENSE:=GPL-2.0+ LGPL-2.1+
-PKG_BUILD_DIR:=$(BUILD_DIR)/lm_sensors-$(PKG_VERSION)
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk