wok view elilo/receipt @ rev 20290

linux-module-headers: update deps for x86_64 target
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 16 09:37:49 2018 +0200 (2018-04-16)
parents fdcd42043927
children 33014fa45fa6
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/boot/efi/boot $install/usr/sbin
20 cp -a docs $install/usr/share/doc
21 cp README* $install/usr/share/doc
22 rm -rf $install/usr/share/doc/CVS
23 sed -i 's|uname -m|echo i686|' Make.defaults
24 make -j1 &&
25 cp elilo.efi $install/boot/efi/boot/elilo &&
26 cp tools/eliloalt $install/usr/sbin
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/usr/sbin $fs/usr
33 cp -a $install/boot $fs
34 }