mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-04 23:42:07 +01:00
30 lines
761 B
Plaintext
30 lines
761 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=fatback
|
|
pkgver=1.3
|
|
pkgrel=1
|
|
pkgdesc="A tool for recovering files from FAT file systems"
|
|
url="https://sourceforge.net/projects/fatback/"
|
|
arch="all"
|
|
license="GPL-2.0"
|
|
makedepends="flex-dev"
|
|
options="!check" # no tests
|
|
subpackages="$pkgname-doc"
|
|
source="https://downloads.sourceforge.net/fatback/fatback-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
--infodir=/usr/share/info \
|
|
--mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
be76a40eb981e3d33730811e846fc4fce6c6e4a7833ef37076d14da62e0741490b566bc17a4268f0861e004088493eb3e0d36771f4c7aa9bf7e765e5a0a65d82 fatback-1.3.tar.gz
|
|
"
|