mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 05:16:12 +02:00
FUSE tool to mount ISO images (typically from CDs and DVDs). The last release in from 2007, but this still builds and works fine.
27 lines
837 B
Text
27 lines
837 B
Text
maintainer="Hugo Osvaldo Barrera <hugo@whynothugo.nl>"
|
|
pkgname=fuseiso
|
|
pkgver=20070708
|
|
pkgrel=0
|
|
pkgdesc="FUSE module to mount ISO filesystem images"
|
|
url="https://sourceforge.net/projects/fuseiso/"
|
|
# Architectures not supported by "configure" script.
|
|
arch="all !aarch64 !loongarch64 !ppc64le !riscv64"
|
|
license=" GPL-2.0-only"
|
|
makedepends="fuse-dev glib-dev"
|
|
subpackages="$pkgname-doc"
|
|
source="https://downloads.sourceforge.net/project/fuseiso/fuseiso/$pkgver/fuseiso-20070708.tar.bz2"
|
|
options="!check" # no tests
|
|
|
|
build() {
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm 0644 README -t "$pkgdir"/usr/share/doc/fuseiso/
|
|
}
|
|
|
|
sha512sums="
|
|
d9d8153101494434fe4ec9c684cec46a1eee46fd3ce06e97fa27f4746990f866e1f23f256b2659e60296d2362cea05d259a0a2ef669ecddf7a0a7e44110c4ae0 fuseiso-20070708.tar.bz2
|
|
"
|