Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 28378 - (hide annotations) (download)
Wed Aug 24 08:12:51 2016 UTC (7 years, 9 months ago) by niro
File size: 746 byte(s)
-revert commit r28377
1 niro 12536 # $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 niro 12537 sminclude mtools mbuild
19 niro 12543 msetfeature "!check"
20 niro 12536
21     SRC_URI=(
22 niro 12542 http://www.linuxtogo.org/~kevin/SeaBIOS/${SRCFILE}
23 niro 12536 mirror://${PNAME}/${SRCFILE}
24     )
25    
26 niro 28378 UP2DATE="updatecmd http://www.linuxtogo.org/~kevin/SeaBIOS | grep ${PNAME}- | lasttarballgz"
27 niro 12536
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 niro 12544
41     minstalldocs COPYING* README TODO || die
42 niro 12536 }