dae5c45522f13b691515d5e79f277dd98cb971f8
[packages.git] / utils / fortune-mod / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=fortune-mod
12 PKG_VERSION:=1.2.1
13 PKG_RELEASE:=2
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://freeware.sgi.com/source/fortune-mod
17 PKG_MD5SUM:=383b1de06b35450235732c7ae7b5f0e3
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/fortune-mod
25   SECTION:=utils
26   CATEGORY:=Utilities
27   TITLE:=display fortune cookies on demand.
28   URL:=http://freeware.sgi.com/source/fortune-mod
29 endef
30
31 define Package/fortune-mod/description
32 Fortune mod displays fortune cookies on demand
33 endef
34
35 define Build/Compile
36         $(HOSTCC) -Wall -o $(PKG_BUILD_DIR)/util/strfile-host $(PKG_BUILD_DIR)/util/strfile.c -DVERSION=\"$(PKG_VERSION)\"
37         $(PKG_BUILD_DIR)/util/strfile-host $(PKG_BUILD_DIR)/datfiles/fortunes $(PKG_BUILD_DIR)/datfiles/fortunes.dat
38         $(MAKE) -C $(PKG_BUILD_DIR)/fortune
39 endef
40
41 define Package/fortune-mod/install
42         $(INSTALL_DIR) $(1)/usr/bin
43         $(INSTALL_BIN) $(PKG_BUILD_DIR)/fortune/fortune $(1)/usr/bin/
44         $(INSTALL_DIR) $(1)/usr/share/games/fortunes
45         $(INSTALL_BIN) $(PKG_BUILD_DIR)/datfiles/fortunes $(1)/usr/share/games/fortunes
46         $(INSTALL_BIN) $(PKG_BUILD_DIR)/datfiles/fortunes.dat $(1)/usr/share/games/fortunes
47 endef
48
49 $(eval $(call BuildPackage,fortune-mod))