Magellan Linux

Contents of /trunk/core/efibootmgr/efibootmgr-18-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33591 - (show annotations) (download)
Thu Aug 10 14:45:21 2023 UTC (9 months ago) by niro
File size: 867 byte(s)
-ver bump to 18-r1
1 # $Id$
2
3 PNAME="efibootmgr"
4 PVER="18"
5 PBUILD="r1"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="Tool to modify UEFI Firmware Boot Manager Variables."
10 HOMEPAGE="https://github.com/rhinstaller/efibootmgr"
11
12 DEPEND=">= dev-libs/popt-1.19
13 >= sys-libs/zlib-1.2.13"
14
15 SDEPEND=">= sys-apps/efivar-38"
16
17 SRCFILE="${PNAME}-${PVER}.tar.bz2"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19
20 msetfeature "!check" # no check target in makefile
21 sminclude mbuild mtools
22
23 SRC_URI=(
24 https://github.com/rhboot/${PNAME}/releases/download/${PVER}/${SRCFILE}
25 mirror://${PNAME}/${SRCFILE}
26 )
27
28 UP2DATE="updatecmd https://github.com/rhboot/${PNAME}/releases | highesttarball"
29
30 src_compile()
31 {
32 cd ${SRCDIR}
33
34 mmake libdir=/usr/$(mlibdir) EFIDIR=arch || die
35 }
36
37 src_install()
38 {
39 cd ${SRCDIR}
40
41 mmake DESTDIR=${BINDIR} libdir=/usr/$(mlibdir) EFIDIR=arch install || die
42 minstalldocs AUTHORS COPYING README* TODO || die
43 }