aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/urjtag/urjtag_git.bb
blob: ed647314a5fbb822ea129f0a7d2c1d378328230e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
DESCRIPTION = "UrJTAG is a universal JTAG library, servers and tools"
HOMEPAGE = "http://urjtag.org/"
LICENSE = "GPLv2"
DEPENDS = "libftdi libusb gettext readline"

SRCREV = "f43c472952f6475eb9b6ef8e64a85f65c044a939"

PV = "0.10"
PR = "r1"
PR_append = "+gitr${SRCPV}"

S = "${WORKDIR}/git/urjtag"

SRC_URI = "git://urjtag.git.sourceforge.net/gitroot/urjtag/urjtag;protocol=git;branch=master \
	"
inherit autotools

# no idea why -s would make a difference but without it configure fails.
# guess the symlink is created before the actual content is there
EXTRA_AUTORECONF = "-s"

do_install () {
        oe_runmake DESTDIR=${D} MKINSTALLDIRS="${S}/tools/mkinstalldirs" install
}