blob: 0002fc5bbbeb4c69d6b2c339d99edea17f81ec2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="An open source Eye-Fi Server written in Python."
HOMEPAGE="http://returnbooleantrue.blogspot.com/"
SRC_URI="https://github.com/nirgal/EyeFiServer/${PVR}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
src_unpack() {
unpack ${A}
cd "${S}"
rm README
rm .gitignore
rm -rf doc
}
src_install() {
cp -R "${S}/etc" "/etc" || die "Install failed!"
cp "${S}/src" "/local/bin" || die "Install failed!"
}
pkg_postinst() {
elog "You will need to set up your /etc/eyefiserver.conf file before"
elog "running EyeFi Server for the first time."
}
|