summaryrefslogtreecommitdiff
path: root/community/anyfs-tools/PKGBUILD
blob: b961981720b4d3034130d8341ff016d363634e8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# $Id: PKGBUILD 66269 2012-02-23 06:54:24Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>

pkgname=anyfs-tools
pkgver=0.85.1c
pkgrel=3
pkgdesc="unix-way toolset for recovering and converting filesystems"
arch=('i686' 'x86_64' 'mips64el')
url="http://anyfs-tools.sourceforge.net/"
license=('GPL')
depends=(bzip2 e2fsprogs libmpeg2 xfsprogs fuse)
#makedepends=('linux-headers')
install=anyfs-tools.install
source=(http://downloads.sourceforge.net/sourceforge/anyfs-tools/${pkgname}-${pkgver}.tar.bz2
	disable-build-ext2fs.patch)
md5sums=('d3da0004cd0f037ec3e926acd3f520c2'
         '5ea91297b605d51b03243adda1efed27')

build() {
  cd $srcdir/$pkgname-${pkgver}

  unset LDFLAGS
  unset CFLAGS
  patch -p1 <$srcdir/disable-build-ext2fs.patch

  #Dirty Arch64 fix which doesn't affect i686
  CFLAGS="-DNO_INLINE_FUNCS -D_INLINE_=static" ./configure --prefix=/usr --build=i686-linux-gnu
  make -j1
  sed -i 's|ldconfig||' src/anysurrect/Makefile
  make INSTALLPATH=$pkgdir/usr install
}