remove PKG_CAT from packages
[openwrt/svn-archive/archive.git] / utils / lilo / Makefile
1 #
2 # Copyright (C) 2006 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:=lilo
12 PKG_VERSION:=22.7.3
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).src.tar.gz
16 PKG_SOURCE_URL:=ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/
17 PKG_MD5SUM:=
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/lilo
24 SECTION:=base
25 CATEGORY:=Boot Loaders
26 DEPENDS:=@LINUX_2_6_X86
27 TITLE:=lilo
28 URL:=ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/
29 endef
30
31 define Package/lilo/conffiles
32 /etc/lilo.conf
33 endef
34
35 define Build/Compile
36 $(MAKE) -C $(PKG_BUILD_DIR) alles
37 endef
38
39 define Package/lilo/install
40 $(INSTALL_DIR) $(1)/sbin
41 $(CP) $(PKG_BUILD_DIR)/lilo.static $(1)/sbin/lilo
42 $(INSTALL_DIR) $(1)/etc
43 $(CP) ./files/lilo.conf $(1)/etc/
44 $(CP) ./files/boot.msg $(1)/etc/
45 endef
46
47 $(eval $(call BuildPackage,lilo))
48
49 $(foreach command, as86 ld86, \
50 $(eval $(call RequireCommand,$(command), \
51 $(PKG_NAME) requires $(command). \
52 )) \
53 )