wok-next diff elilo/receipt @ rev 20523

libnsgif: add missing stuff
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 23 15:16:45 2018 +0200 (2018-03-23)
parents fcdd50638150
children d5aab818505e
line diff
     1.1 --- a/elilo/receipt	Mon Dec 02 16:43:36 2013 +0000
     1.2 +++ b/elilo/receipt	Fri Mar 23 15:16:45 2018 +0200
     1.3 @@ -1,30 +1,29 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="elilo"
     1.8  VERSION="3.10"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="The EFI linux boot loader."
    1.11 +SHORT_DESC="The EFI linux boot loader"
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="http://elilo.sourceforge.net/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="http://elilo.sourceforge.net/"
    1.18  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.19 +
    1.20  BUILD_DEPENDS="gnu-efi"
    1.21 +
    1.22  # See http://mactel-linux.sourceforge.net/wiki/Main_Page
    1.23  #     genisoimage -boot-hfs-file
    1.24  
    1.25 -# Rules to configure and make the package.
    1.26 -compile_rules()
    1.27 -{
    1.28 -	cd $src
    1.29 -	make -j1
    1.30 +compile_rules() {
    1.31 +	make -j1 || return 1
    1.32 +
    1.33 +	mkdir -p $install/usr/lib/elilo $install/usr/sbin
    1.34 +	cp -a $src/elilo.efi $install/usr/lib/elilo
    1.35 +	cp -a $src/tools/eliloalt $install/usr/sbin
    1.36  }
    1.37  
    1.38 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.39 -genpkg_rules()
    1.40 -{
    1.41 -	mkdir -p $fs/usr/lib/elilo $fs/usr/sbin
    1.42 -	cp -a $src/elilo.efi $fs/usr/lib/elilo
    1.43 -	cp -a $src/tools/eliloalt $fs/usr/sbin
    1.44 +genpkg_rules() {
    1.45 +	copy @std
    1.46  }
    1.47 -