# $Id: PKGBUILD 68468 2012-03-25 09:05:15Z giovanni $ # Maintainer: Giovanni Scafora # Contributor: GaoShichao pkgname=fuse-exfat pkgver=0.9.7 pkgrel=1 pkgdesc="Free exFAT file system implementation" arch=('i686' 'x86_64') url="http://code.google.com/p/exfat/" license=('GPL3') depends=('fuse') makedepends=('scons') optdepends=('exfat-utils: utilities for exFAT file system' 'util-linux: to mount exFAT volumes automatically') source=("http://exfat.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") md5sums=('ea8eddcc68ec8881cb8a280086297e39') package() { cd "${srcdir}/${pkgname}-${pkgver}" scons CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS} " install DESTDIR="${pkgdir}/sbin" # Install man page install -Dm444 fuse/mount.exfat-fuse.8 "${pkgdir}/usr/share/man/man8/mount.exfat-fuse.8" }