mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 06:12:14 +01:00
33 lines
749 B
Plaintext
33 lines
749 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=fatback
|
|
pkgver=1.3
|
|
pkgrel=0
|
|
pkgdesc="A tool for recovering files from FAT file systems"
|
|
url="http://fatback.sourceforge.net/"
|
|
arch="all"
|
|
license="GPL2"
|
|
depends=""
|
|
makedepends="flex"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--infodir=/usr/share/info \
|
|
--mandir=/usr/share/man \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="4f1beb13670a7eff5b66cff84e5fd42a fatback-1.3.tar.gz"
|