lsof: use environment variables correctly to prime Configure
[openwrt/svn-archive/archive.git] / utils / remind / Makefile
1 #
2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
4 #
5
6 include $(TOPDIR)/rules.mk
7
8 PKG_NAME:=remind
9 PKG_VERSION:=03.01.12
10 PKG_RELEASE:=1
11
12 PKG_SOURCE:=remind-$(PKG_VERSION).tar.gz
13 PKG_SOURCE_URL:=http://www.roaringpenguin.com/files/download/
14 PKG_MD5SUM:=de16cbfc3ee94defcb1abdf78b2ebcd1
15 PKG_CAT:=zcat
16
17 PKG_BUILD_DIR:=$(BUILD_DIR)/remind-$(PKG_VERSION)
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/remind
22 SECTION:=utils
23 CATEGORY:=Utilities
24 TITLE:=Reminder
25 URL:=http://www.roaringpenguin.com/files/download/
26 endef
27
28 define Package/remind/description
29 Remind is a powerfull commadline reminder.
30 endef
31
32 define Build/Configure
33 $(call Build/Configure/Default, \
34 --prefix=/usr --with-linux-headers="$(LINUX_DIR)" \
35 )
36 endef
37
38 define Package/remind/install
39 $(INSTALL_DIR) $(1)/usr/bin/
40 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/remind $(1)/usr/bin/
41 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/rem2ps $(1)/usr/bin/
42 $(INSTALL_BIN) $(PKG_BUILD_DIR)/www/rem2html $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,remind))