update PR about dvbapp.
[vuplus_openembedded] / recipes / git / git.inc
1 DESCRIPTION = "The git revision control system used by the Linux kernel developers"
2 SECTION = "console/utils"
3 LICENSE = "GPL"
4
5 SRC_URI = "http://www.kernel.org/pub/software/scm/git/git-${PV}.tar.bz2 \
6            file://autotools.patch;patch=1 \
7            "
8 S = "${WORKDIR}/git-${PV}"
9
10 inherit autotools
11
12 EXTRA_OEMAKE = "NO_TCLTK=1"
13
14 do_install () {
15         oe_runmake install DESTDIR="${D}" bindir=${bindir} \
16                 template_dir=${datadir}/git-core/templates \
17                 GIT_PYTHON_DIR=${datadir}/git-core/python
18 }
19
20 FILES_${PN} += "${datadir}/git-core"