blob: 4bec088df202d48c216b9db15adfaaee94fc1d48 (
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
31
32
33
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
DESCRIPTION="The snap-confine program helps to launch snappy applications"
HOMEPAGE="http://snapcraft.io/"
SRC_URI="https://github.com/snapcore/${PN}/releases/download/${PV}/${P}.tar.gz"
RESTRICT="mirror"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64"
DEPEND="dev-python/docutils
sys-devel/autoconf
sys-devel/automake
sys-devel/gcc
sys-devel/make
virtual/libudev"
src_configure() {
econf --disable-apparmor
}
src_compile() {
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install
dodoc README.md PORTING
}
|