wok view elilo/receipt @ rev 20288

elilo: force ia32
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 10 12:43:43 2018 +0200 (2018-04-10)
parents fcdd50638150
children fdcd42043927
line source
1 # SliTaz package receipt.
3 PACKAGE="elilo"
4 VERSION="3.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="The EFI linux boot loader."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://elilo.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 BUILD_DEPENDS="gnu-efi"
13 # See http://mactel-linux.sourceforge.net/wiki/Main_Page
14 # genisoimage -boot-hfs-file
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir -p $install/usr/share $install/usr/lib $install/usr/sbin
20 cp -a docs $install/usr/share/doc
21 cp README* $install/usr/share/doc
22 make -j1 && mv elilo.efi elilo.efi.x86_64
23 make clean
24 sed -i 's|uname -m|echo i686|' Make.defaults
25 make -j1 &&
26 cp elilo.efi $install/usr/lib/elilo &&
27 cp eliloalt $install/usr/sbin
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs
34 }