23 lines
669 B
Bash
23 lines
669 B
Bash
# Template file for 'e2tools'
|
|
pkgname=e2tools
|
|
version=0.0.16.4
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake pkg-config"
|
|
makedepends="e2fsprogs-devel"
|
|
short_desc="Utilities for manipulating files in an ext2/ext3 filesystem"
|
|
maintainer="Daniel Santana <daniel@santana.tech>"
|
|
license="GPL-2.0-only"
|
|
homepage="https://github.com/ndim/e2tools"
|
|
distfiles="https://github.com/ndim/e2tools/archive/v${version}.tar.gz"
|
|
checksum=1d06ca71f01483ad6d9a514e31466e7d2357b3465de2813d667a8b2f9638544e
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
for man in e2cp.1 e2ln.1 e2ls.1 e2mkdir.1 e2mv.1 e2rm.1 e2tail.1 e2tools.7; do
|
|
vman "$FILESDIR/$man"
|
|
done
|
|
}
|