# $Id: PKGBUILD 115959 2014-07-19 13:14:14Z giovanni $ # Maintainer: Giovanni Scafora # Contributor: GaoShichao pkgname=fuse-exfat pkgver=1.1.0 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://pkgbuild.com/~giovanni/exfat/${pkgname}-${pkgver}.tar.gz") md5sums=('b2a23c032661cb1c1da4514e7af33916') package() { cd "${srcdir}/${pkgname}-${pkgver}" scons CCFLAGS="${CFLAGS} -std=c99" LINKFLAGS="${LDFLAGS} " install DESTDIR="${pkgdir}/usr/bin" # Install man page install -Dm444 fuse/mount.exfat-fuse.8 "${pkgdir}/usr/share/man/man8/mount.exfat-fuse.8" }