wok-next annotate elilo/receipt @ rev 16144
efreet-dev: sync version
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed Mar 26 10:19:52 2014 +0100 (2014-03-26) |
parents | 3eed5701a7ff |
children | e1c0edabdcb2 |
rev | line source |
---|---|
pascal@4338 | 1 # SliTaz package receipt. |
pascal@4338 | 2 |
pascal@4338 | 3 PACKAGE="elilo" |
pascal@4338 | 4 VERSION="3.10" |
pascal@4338 | 5 CATEGORY="system-tools" |
pascal@4338 | 6 SHORT_DESC="The EFI linux boot loader." |
pascal@4338 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15588 | 8 LICENSE="GPL2" |
pascal@4338 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4338 | 10 WEB_SITE="http://elilo.sourceforge.net/" |
pascal@4338 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@4338 | 12 BUILD_DEPENDS="gnu-efi" |
pascal@4338 | 13 # See http://mactel-linux.sourceforge.net/wiki/Main_Page |
pascal@4338 | 14 # genisoimage -boot-hfs-file |
pascal@4338 | 15 |
pascal@4338 | 16 # Rules to configure and make the package. |
pascal@4338 | 17 compile_rules() |
pascal@4338 | 18 { |
pascal@4338 | 19 cd $src |
pascal@9073 | 20 make -j1 |
pascal@4338 | 21 } |
pascal@4338 | 22 |
pascal@4338 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4338 | 24 genpkg_rules() |
pascal@4338 | 25 { |
pascal@4338 | 26 mkdir -p $fs/usr/lib/elilo $fs/usr/sbin |
pascal@4338 | 27 cp -a $src/elilo.efi $fs/usr/lib/elilo |
pascal@4338 | 28 cp -a $src/tools/eliloalt $fs/usr/sbin |
pascal@4338 | 29 } |
pascal@4338 | 30 |