blob: ac59e8e2277296647cd7d8fcbf579e1357749412 (
plain) (
tree)
|
|
# Contributor: Nathan <ndowens@artixlinux.org>
# Maintainer: Nathan <ndowens@artixlinux.org>
pkgname=genext2fs
pkgver=1.5.0
pkgrel=0
pkgdesc="ext2 filesystem generator for embedded systems"
url="https://github.com/bestouff/genext2fs"
arch="all"
license="GPL-2.0+"
depends=""
makedepends="autoconf automake libarchive-dev"
subpackages="$pkgname-doc"
source=""$pkgname-$pkgver.tar.gz::https://github.com/bestouff/genext2fs/archive/v$pkgver.tar.gz
prepare() {
NOCONFIGURE=1 ./autogen.sh
}
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--enable-libarchive
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="628994f4f5f6d534a42e16db5322e36addb227d0e0ee589ebebbbb6beda9c53774186a932d04fcb978fde1cbe534b8335fdbfea256aecd2d873c03bc5892a8ce genext2fs-1.5.0.tar.gz"
|