From 9aaeb4623d3ff5746e665bc17914eefd292b7dcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BChling?= Date: Sun, 2 Jan 2011 15:19:00 +0100 Subject: New OpenWrt package for GNU Octave. Experimental/probably still broken. Work in progress. Committing it as compilation seems to take forever. Not sure whether I can finish this within a few days. --- wtime/Makefile | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 wtime/Makefile (limited to 'wtime/Makefile') diff --git a/wtime/Makefile b/wtime/Makefile new file mode 100644 index 0000000..640fce8 --- /dev/null +++ b/wtime/Makefile @@ -0,0 +1,43 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=wtime +PKG_VERSION:=0.2 +PKG_RELEASE:=2 + +PKG_SOURCE:=wtime_0_2.tar.gz +PKG_SOURCE_URL:=@SF/wtime +PKG_MD5SUM:=59c2d41048706993ca260afcdab337c3 +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/wtime + +include $(INCLUDE_DIR)/package.mk + +define Package/wtime + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:= + TITLE:=WTime time tracker + URL:=http://wtime.sourceforge.net +endef + +define Package/wtime/description + Time tracking command-line utility. +endef + +define Build/Configure + $(call Build/Compile/Default, \ + ) +endef + + +define Package/wtime/install + $(INSTALL_DIR) $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/wtime $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/root/.wtimed/ + $(INSTALL_DIR) $(1)/usr/share/ + $(INSTALL_DIR) $(1)/usr/share/wtime/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/LICENCE $(1)/usr/share/wtime/ +endef + +$(eval $(call BuildPackage,wtime)) -- cgit v1.2.3