1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-07 21:42:00 +03:00
openwrt-xburst/package/ntpclient/Makefile
nbd f276a41fc9 change ntpclient to start after dropbear and ppp stuff and make it start as a background process
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1101 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-05-29 16:59:34 +00:00

36 lines
914 B
Makefile

# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=ntpclient
PKG_VERSION:=2003_194
PKG_RELEASE:=1
PKG_MD5SUM:=94e84d5c6023c5e1f3890b28d0a08c92
PKG_SOURCE_URL:=http://doolittle.faludi.com/ntpclient
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,NTPCLIENT,ntpclient,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured:
touch $@
$(PKG_BUILD_DIR)/.built:
$(MAKE) -C $(PKG_BUILD_DIR) \
CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)"
touch $@
$(IPKG_NTPCLIENT):
install -d -m0755 $(IDIR_NTPCLIENT)/etc/init.d
install -m0755 ./files/ntpclient.init $(IDIR_NTPCLIENT)/etc/init.d/S60ntpclient
install -d -m0755 $(IDIR_NTPCLIENT)/usr/sbin
install -m0755 $(PKG_BUILD_DIR)/ntpclient $(IDIR_NTPCLIENT)/usr/sbin/
$(RSTRIP) $(IDIR_NTPCLIENT)
$(IPKG_BUILD) $(IDIR_NTPCLIENT) $(PACKAGE_DIR)