blob: a5ba0006a0fb25e6d252af80f62635da6eefe498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3
DESCRIPTION="Start an xorg server"
HOMEPAGE="https://github.com/Earnestly/sx"
EGIT_REPO_URI="https://github.com/Earnestly/sx.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
src_compile() {
:
}
src_install() {
emake PREFIX=/usr DESTDIR="${D}" install
}
|