blob: b47637b2d91940e05729d1317a09e7c470a36a20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Fatrace - report system wide file access events"
HOMEPAGE = "https://launchpad.net/fatrace"
LICENSE = "GPL-3.0"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
SRC_URI = "https://launchpad.net/fatrace/trunk/0.9/+download/fatrace-0.9.tar.bz2"
SRC_URI[md5sum] = "17ac66f758f200af32f493263edc6b49"
SRC_URI[sha256sum] = "c028d822ffde68805e5d1f62c4e2d0f4b3d4ae565802cc9468c82b25b92e68cd"
# install to /usr
export PREFIX = "/usr"
inherit autotools
# skip installing power-usage-report
do_install_append() {
rm -f ${D}${sbindir}/power-usage-report
}
|