diff options
Diffstat (limited to 'community/anyfs-tools/PKGBUILD')
-rw-r--r-- | community/anyfs-tools/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/anyfs-tools/PKGBUILD b/community/anyfs-tools/PKGBUILD new file mode 100644 index 000000000..47d550208 --- /dev/null +++ b/community/anyfs-tools/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 20118 2010-07-02 14:36:14Z 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=1 +pkgdesc="unix-way toolset for recovering and converting filesystems" +arch=('i686' 'x86_64') +url="http://anyfs-tools.sourceforge.net/" +license=('GPL') +depends=(bzip2 e2fsprogs libmpeg2 xfsprogs fuse) +source=(http://downloads.sourceforge.net/sourceforge/anyfs-tools/${pkgname}-${pkgver}.tar.bz2) +md5sums=('d3da0004cd0f037ec3e926acd3f520c2') + +build() { + cd $srcdir/$pkgname-${pkgver} + #Dirty Arch64 fix which doesn't affect i686 + CFLAGS="-DNO_INLINE_FUNCS -D_INLINE_=static" ./configure --prefix=/usr --build=i686-linux-gnu + make || return 1 + sed -i 's|ldconfig||' src/anysurrect/Makefile + make INSTALLPATH=$pkgdir/usr install +} |