update lilo to latest version (missing source), move files in ./files
[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: Makefile 4091 2006-06-27 00:35:46Z mbm $
8 #
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=lilo
12 PKG_VERSION:=22.7.3
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).src.tar.gz
17 PKG_SOURCE_URL:=ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/
18 PKG_MD5SUM:=
19 PKG_CAT:=zcat
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||LINUX_2_4_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 $(STRIP) $(PKG_BUILD_DIR)/lilo.static
38 endef
39
40 define Package/lilo/install
41 install -d -m0755 $(1)/sbin
42 $(CP) $(PKG_BUILD_DIR)/lilo.static $(1)/sbin/lilo
43 install -d -m0755 $(1)/etc
44 $(CP) ./files/lilo.conf $(1)/etc/
45 $(CP) ./files/boot.msg $(1)/etc/
46 endef
47
48 $(eval $(call BuildPackage,lilo))