diff options
author | Zoltan Herpai <wigyori@uid0.hu> | 2014-09-21 18:32:26 +0200 |
---|---|---|
committer | Zoltan Herpai <wigyori@uid0.hu> | 2014-09-21 18:32:26 +0200 |
commit | 968c9f24ae8b9ae952899a0747bb1b64eba8fa63 (patch) | |
tree | 428079c654fa9979acecf125fc5b75b839a68955 | |
parent | 921bc5075d2288cb05bf24e2dfc75c590177b60f (diff) | |
parent | 76ed6173bf8186e8b37ca942f70406dae4298d09 (diff) |
Merge pull request #339 from wigyori/master
pps-tools: update package, allow compiling on more recent kernels
-rw-r--r-- | utils/pps-tools/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/utils/pps-tools/Makefile b/utils/pps-tools/Makefile new file mode 100644 index 000000000..93d0578dc --- /dev/null +++ b/utils/pps-tools/Makefile @@ -0,0 +1,50 @@ +# +# Copyright (C) 2014 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=pps-tools +PKG_VERSION:=2014-08-01 +PKG_RELEASE=$(PKG_SOURCE_VERSION) + +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL:=git://github.com/ago/pps-tools +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_VERSION:=0deb9c7e135e9380a6d09e9d2e938a146bb698c8 +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 + +PKG_MAINTAINER := Zoltan HERPAI <wigyori@uid0.hu> +PKG_LICENSE:=GPL-2.0 + +include $(INCLUDE_DIR)/package.mk + +define Package/pps-tools + SECTION:=utils + CATEGORY:=Utilities + TITLE:=PPS-tools + DEPENDS:=@LINUX_3_10||@LINUX_3_13||@LINUX_3_14 +endef + +define Package/pps-tools/description + Userland tools for GPS and DCF-77 Clock syncronization. PPS support in Kernel must be enabled. +endef + +TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include + +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_BUILD_DIR)/timepps.h $(1)/usr/include/ +endef + +define Package/pps-tools/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/ppsctl $(1)/usr/sbin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/ppstest $(1)/usr/sbin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/ppswatch $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,pps-tools)) |