wok view elilo/receipt @ rev 22454

get-palemoon: add tar (magic) and J for .xz (downloaded archive is not bzip2 anymore)
author Erkan Yilmaz <erkan@slitaz.org>
date Thu Dec 26 11:01:01 2019 +0000 (2019-12-26)
parents a8c772fc1eb1
children 10cdf08515bb
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 $install/usr/share
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 }