Magellan Linux

Contents of /trunk/extras/seabios/seabios-1.7.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 28378 - (show annotations) (download)
Wed Aug 24 08:12:51 2016 UTC (7 years, 8 months ago) by niro
File size: 746 byte(s)
-revert commit r28377
1 # $Id$
2
3 PNAME="seabios"
4 PVER="1.7.0"
5 PBUILD="r1"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="Open Source implementation of a 16-bit x86 BIOS."
10 HOMEPAGE="http://www.seabios.org/"
11
12 DEPEND=""
13 SDEPEND=">= dev-lang/python-2.7"
14
15 SRCFILE="${PNAME}-${PVER}.tar.gz"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mtools mbuild
19 msetfeature "!check"
20
21 SRC_URI=(
22 http://www.linuxtogo.org/~kevin/SeaBIOS/${SRCFILE}
23 mirror://${PNAME}/${SRCFILE}
24 )
25
26 UP2DATE="updatecmd http://www.linuxtogo.org/~kevin/SeaBIOS | grep ${PNAME}- | lasttarballgz"
27
28 src_compile()
29 {
30 cd ${SRCDIR}
31 mmake out/bios.bin || die
32 }
33
34 src_install()
35 {
36 cd ${SRCDIR}
37
38 minstalldir /usr/share/seabios || die
39 minstallfile out/bios.bin /usr/share/seabios || die
40
41 minstalldocs COPYING* README TODO || die
42 }