[pcituils] Fix post-installation error
[openwrt/svn-archive/archive.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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=fortune-mod
11 PKG_VERSION:=1.2.1
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://freeware.sgi.com/source/fortune-mod
16 PKG_MD5SUM:=383b1de06b35450235732c7ae7b5f0e3
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/fortune-mod
23 SECTION:=utils
24 CATEGORY:=Utilities
25 TITLE:=display fortune cookies on demand.
26 URL:=http://freeware.sgi.com/source/fortune-mod
27 endef
28
29 define Package/fortune-mod/description
30 Fortune mod displays fortune cookies on demand
31 endef
32
33 define Build/Compile
34 $(HOSTCC) -Wall -o $(PKG_BUILD_DIR)/util/strfile-host $(PKG_BUILD_DIR)/util/strfile.c -DVERSION=\"$(PKG_VERSION)\"
35 $(PKG_BUILD_DIR)/util/strfile-host $(PKG_BUILD_DIR)/datfiles/fortunes $(PKG_BUILD_DIR)/datfiles/fortunes.dat
36 $(MAKE) -C $(PKG_BUILD_DIR)/fortune
37 endef
38
39 define Package/fortune-mod/install
40 $(INSTALL_DIR) $(1)/usr/bin
41 $(INSTALL_BIN) $(PKG_BUILD_DIR)/fortune/fortune $(1)/usr/bin/
42 $(INSTALL_DIR) $(1)/usr/share/games/fortunes
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/datfiles/fortunes $(1)/usr/share/games/fortunes
44 $(INSTALL_BIN) $(PKG_BUILD_DIR)/datfiles/fortunes.dat $(1)/usr/share/games/fortunes
45 endef
46
47 $(eval $(call BuildPackage,fortune-mod))