sx-2.1.7-r1.ebuild (537B)
1 # Copyright 1999-2022 Gentoo Authors 2 # Distributed under the terms of the GNU General Public License v2 3 4 EAPI=8 5 6 DESCRIPTION="Start an xorg server" 7 HOMEPAGE="https://github.com/Earnestly/sx" 8 SRC_URI="https://github.com/Earnestly/sx/archive/${PV}.tar.gz -> ${P}.tar.gz" 9 10 LICENSE="MIT" 11 SLOT="0" 12 KEYWORDS="~amd64" 13 14 RDEPEND=" 15 x11-apps/xauth 16 x11-base/xorg-server[xorg] 17 " 18 19 src_compile() { 20 : 21 } 22 23 src_install() { 24 local emakeargs=( 25 DESTDIR="${D}" 26 PREFIX="${EPREFIX}"/usr 27 ) 28 emake "${emakeargs[@]}" install 29 }