Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12542 - (show annotations) (download)
Fri Jun 8 08:48:17 2012 UTC (12 years ago) by niro
File size: 682 byte(s)
-fixed SRC_URI
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
20 SRC_URI=(
21 http://www.linuxtogo.org/~kevin/SeaBIOS/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd http://www.linuxtogo.org/~kevin/SeaBIOS | grep ${PNAME}- | lasttarballgz"
26
27 src_compile()
28 {
29 cd ${SRCDIR}
30 mmake out/bios.bin || die
31 }
32
33 src_install()
34 {
35 cd ${SRCDIR}
36
37 minstalldir /usr/share/seabios || die
38 minstallfile out/bios.bin /usr/share/seabios || die
39 }