X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id BF660133B84C for ; Thu, 30 Jun 2011 06:09:02 +0000 (UTC) Received: by vws18 with SMTP id 18so1934179vws.13 for ; Wed, 29 Jun 2011 23:09:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=hLswOroKqVjZKAoc1eDBYidf6OqbkL0Ji2T/uZ5zPiU=; b=D8LomE3jVeCnJzUc02xD6M0doXu3Zf+ZKOzmJSG05Y2xn/VpjO/3pWBTB6PXnOq2vA YkkhBAZ4kjT62gdvZKLOEr9laR+27piZTXdrqBlLOitxt4wb86fZ1O/MJtq3TOxy5Nx5 wP6V4RwY6MzxphHdR6+9e4G8M4GjlTXYyINrQ= X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Received: by 10.220.37.14 with SMTP id v14mr593709vcd.221.1309414140058; Wed, 29 Jun 2011 23:09:00 -0700 (PDT) Received: by 10.220.179.3 with HTTP; Wed, 29 Jun 2011 23:09:00 -0700 (PDT) In-Reply-To: <1309384728-8419-1-git-send-email-fabian@affolter-engineering.ch> References: <1309384728-8419-1-git-send-email-fabian@affolter-engineering.ch> Date: Thu, 30 Jun 2011 08:09:00 +0200 Message-ID: Subject: Re: [alpine-devel] [PATCH] Initial APKBUILD of fatback From: Leonardo Arena To: Fabian Affolter Cc: Alpine-devel Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Wed, Jun 29, 2011 at 11:58 PM, Fabian Affolter wrote: Hi, > --- > =A0testing/fatback/APKBUILD | =A0 33 +++++++++++++++++++++++++++++++++ > =A01 files changed, 33 insertions(+), 0 deletions(-) > =A0create 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 > +# Maintainer: > +pkgname=3Dfatback > +pkgver=3D1.3 > +pkgrel=3D0 > +pkgdesc=3D"A tool for recovering files from FAT file systems" > +url=3D"http://fatback.sourceforge.net/" > +arch=3D"all" > +license=3D"GPL2" > +depends=3D"" > +depends_dev=3D"" > +makedepends=3D"flex" > +install=3D"" > +subpackages=3D"$pkgname-doc" > +source=3D"http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar= .gz" > +_builddir=3D"$srcdir"/$pkgname-$pkgver > + > +build() { > + =A0 =A0 =A0 cd "$_builddir" > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 ./configure \ > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 --prefix=3D/usr \ > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 --infodir=3D/usr/share/info \ > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 --mandir=3D/usr/share/man \ > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 || return 1 > + =A0 =A0 =A0 make || return 1 > +} > + > +package() { > + =A0 =A0 =A0 cd "$_builddir" > + =A0 =A0 =A0 make DESTDIR=3D"$pkgdir" install || return 1 > +} > + > +md5sums=3D"4f1beb13670a7eff5b66cff84e5fd42a =A0fatback-1.3.tar.gz" > -- > 1.7.4.5 thank you for the APKBUILD. Did you ever try testdisk? It's in main and it works also on FAT. Or fatback does something more that testdisk doesn't? - leonardo --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---