Celeste 40ea6c48d7 */*: add maintainer variable for aports i maintain
leaving the Maintainer comment there for better visual cues, syntax highlighting, and easy conversion to a Contributor comment

since Contributor comments are not being removed, just treat my Maintainer comments like Contributor ones, as a normal comment
2024-10-16 16:20:45 +00:00

38 lines
898 B
Plaintext

# Contributor: Daniel Santana <daniel@santana.tech>
# Maintainer: Celeste <cielesti@protonmail.com>
maintainer="Celeste <cielesti@protonmail.com>"
pkgname=e2tools
pkgver=0.1.2
pkgrel=0
pkgdesc="Utilities for manipulating files in an ext2/ext3 filesystem"
url="https://e2tools.github.io/"
arch="all"
license="GPL-2.0-only"
makedepends="e2fsprogs-dev"
checkdepends="e2fsprogs"
subpackages="$pkgname-doc"
source="https://github.com/e2tools/e2tools/releases/download/v$pkgver/e2tools-$pkgver.tar.gz"
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
511da5b19be72bee2f8529e571901f38c437a8adfcecfbda64b3f167be931951170e0499ae9d147a770fa232be7ba11a4175e73339e206fdfd500b67f8329380 e2tools-0.1.2.tar.gz
"