Patrick Williams | 73bd93f | 2024-02-20 08:07:48 -0600 | [diff] [blame^] | 1 | SUMMARY = "Set of GPL'ed utilities to ext2/ext3 filesystem." |
| 2 | DESCRIPTION = "e2tools is a simple set of GPL'ed utilities to read, write, \ |
| 3 | and manipulate files in an ext2/ext3 filesystem. These utilities access a \ |
| 4 | filesystem directly using the ext2fs library. Can also be used on a Linux \ |
| 5 | machine to read/write to disk images or floppies without having to mount \ |
| 6 | them or have root access." |
| 7 | HOMEPAGE = "https://github.com/e2tools/e2tools" |
| 8 | SECTION = "base" |
| 9 | LICENSE = "GPL-2.0-only" |
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
| 11 | |
| 12 | DEPENDS += "e2fsprogs" |
| 13 | |
| 14 | PV = "0.1.0+git" |
| 15 | |
| 16 | SRC_URI = " \ |
| 17 | git://github.com/e2tools/e2tools;protocol=https;branch=master \ |
| 18 | " |
| 19 | SRCREV = "fd092754a6b65c3a769f74f888668c066f09c36d" |
| 20 | |
| 21 | S = "${WORKDIR}/git" |
| 22 | |
| 23 | inherit autotools pkgconfig |
| 24 | |
| 25 | BBCLASSEXTEND = "native" |