803e487055040dfc5052f301557b10a47c7a7ed7
[vuplus_openembedded] / grub / grub_0.93.oe
1 DESCRIPTION = "grand unified bootloader"
2 DEPENDS = "virtual/libc"
3
4 SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz; \
5            file://${FILESDIR}/autohell.patch;patch=1 \
6            file://${FILESDIR}/memcpy.patch;patch=1 \
7            file://${FILESDIR}/reiserfs.patch;patch=1"
8
9 S = "${WORKDIR}/grub-${PV}"
10
11 inherit autotools
12
13 python __anonymous () {
14         import re
15         host = oe.data.getVar('HOST_SYS', d, 1)
16         if not re.match('i.86.*-linux', host):
17                 raise oe.parse.SkipPackage("incompatible with host %s" % host)
18 }