pentoo-overlay/net-fs/afpfs-ng/afpfs-ng-0.8.2.ebuild
2017-09-29 09:56:44 +08:00

26 lines
571 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools
DESCRIPTION="a client for the Apple Filing Protocol"
HOMEPAGE="https://github.com/simonvetter/afpfs-ng"
SRC_URI="https://raw.githubusercontent.com/simonvetter/afpfs-ng/master/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="sys-fs/fuse"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
src_install() {
DESTDIR="${D}" emake install
insinto /usr/include/$PN
doins include/* || die "failed to install headers"
}