bgs-0.8.ebuild (417B)
1 EAPI=7 2 3 DESCRIPTION="https://github.com/Gottox/bgs" 4 HOMEPAGE="https://github.com/Gottox/bgs" 5 SRC_URI="https://github.com/Gottox/bgs/archive/v${PV}.tar.gz -> ${P}.tar.gz" 6 7 SLOT=0 8 IUSE="static" 9 DEPEND=" 10 media-libs/imlib2 11 x11-libs/libX11 12 " 13 14 src_configure() { 15 default 16 17 if use static; then 18 export LDFLAGS="${LDFLAGS} -static" 19 fi 20 } 21 22 src_install() { 23 emake DESTDIR="${D}" PREFIX="${EPREFIX}${LOCAL_PREFIX}" install 24 }