dev-go/fuse - 9999 (wichtounet)

Search

Package Information

Description:
Native bindings for the FUSE kernel module for Go
Homepage:
https://github.com/hanwen/go-fuse/
License:
BSD

Ebuild Details

Version EAPI Keywords Slot
9999 6 ~amd64 0
View Raw Ebuild
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=6

DESCRIPTION="Native bindings for the FUSE kernel module for Go"
HOMEPAGE="https://github.com/hanwen/go-fuse/"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

DEPEND=">=dev-lang/go-1.1.1"

RDEPEND="${DEPEND}"

pkg_setup() {
	if [[ ! -e "${GOPATH}" ]] ; then
		eerror "The GOPATH variable must be set and point to an existing directory"
		die "The GOPATH variable must be set and point to an existing directory"
	fi
}

src_unpack() {
	#Fake the unpack
	mkdir -p ${P}
}

src_install() {
	#Fake the install
	mkdir -p ${D}
}

pkg_postinst(){
	go get github.com/hanwen/go-fuse/fuse
}

Dependencies

DEPEND

>=dev-lang/go-1.1.1

RDEPEND

>=dev-lang/go-1.1.1