summaryrefslogtreecommitdiffstats
path: root/meta/packages/pseudo/pseudo_git.bb
blob: dd62e6f3bc4b62579b91979a4fc95ffe746d90c8 (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
25
26
27
28
DESCRIPTION = "Pseudo gives fake root capabilities to a normal user"
SECTION = "base"
LICENSE = "LGPL2.1"
DEPENDS = "sqlite3"

PV = "0.0+git${SRCPV}"
PR = "r3"

SRC_URI = "git://github.com/wrpseudo/pseudo.git;protocol=git \
           file://tweakflags.patch;patch=1"

S = "${WORKDIR}/git"

inherit siteinfo

do_configure () {
	${S}/configure --prefix=${prefix} --with-sqlite=${STAGING_DIR_TARGET}${exec_prefix} --bits=${SITEINFO_BITS}
}

do_install() {
	oe_runmake 'DESTDIR=${D}' install
}

NATIVE_INSTALL_WORKS = "1"

BBCLASSEXTEND = "native"