29 lines
700 B
Bash
29 lines
700 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
inherit scons-utils toolchain-funcs
|
|
|
|
DESCRIPTION="exFAT filesystem utilities"
|
|
HOMEPAGE="https://github.com/relan/exfat"
|
|
SRC_URI="https://exfat.googlecode.com/files/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux"
|
|
IUSE=""
|
|
|
|
src_compile() {
|
|
tc-export AR CC RANLIB
|
|
escons CCFLAGS="${CFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin dump/dumpexfat label/exfatlabel mkfs/mkexfatfs fsck/exfatfsck
|
|
dosym mkexfatfs /usr/bin/mkfs.exfat
|
|
dosym exfatfsck /usr/bin/fsck.exfat
|
|
|
|
doman */*.8
|
|
dodoc ChangeLog
|
|
}
|