~alpine/devel

Initial APKBUILD of fatback v1 PROPOSED

Fabian Affolter: 1
 Initial APKBUILD of fatback

 1 files changed, 33 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/devel/patches/66/mbox | git am -3
Learn more about email & git

[alpine-devel] [PATCH] Initial APKBUILD of fatback Export this patch

---
 testing/fatback/APKBUILD |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)
 create mode 100644 testing/fatback/APKBUILD
diff --git a/testing/fatback/APKBUILD b/testing/fatback/APKBUILD
new file mode 100644
index 0000000..135e491
--- /dev/null
+++ b/testing/fatback/APKBUILD
@@ -0,0 +1,33 @@
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer:
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=""
depends_dev=""
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"
-- 
1.7.4.5


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
On Wed, Jun 29, 2011 at 11:58 PM, Fabian Affolter
<fabian@affolter-engineering.ch> wrote:

Hi,