diff --git a/app-editors/lighttable-bin/Manifest b/app-editors/lighttable-bin/Manifest new file mode 100644 index 0000000..07e16b2 --- /dev/null +++ b/app-editors/lighttable-bin/Manifest @@ -0,0 +1,2 @@ +DIST lighttable-0.8.1-linux.tar.gz 55599081 SHA256 fb96cc29fc22a96380c894b4eaa6397be05e653ccab7e33277c341d78b38d219 SHA512 6fd85590338871b63a22fc43d22a07551f8401ce1d1b03cc8a45eb3bb5ff84432918e375a05dfb29aa557ce4aa11236d11118b6556d3aeb1a18e51f0974cf0fb WHIRLPOOL 7aaea805fbd03a29932dd4a1e9eb2d29020078c53e5dfbab06dd804c4c87deeb0a6eb5bdebc207053b653357cec37d1b777d8fffeb52f11e13d60e0448ca0e2e +EBUILD lighttable-bin-0.8.1-r1.ebuild 791 SHA256 6e79689bdd6af8584893c7571dd7e49859a138fb2336e358bf4bb67fbf5bdbc1 SHA512 8617f99972babe520957506375913827b57665e6957b1d2c83757e806f59610151d094eaca8072bbadf72377720d699a97c23e809082a79206fb39c711fca26b WHIRLPOOL 098ae2cbf8edccbb553f4c9e9fe3149b26ec5c9f6e3ce1b31d8d7f46c8132ae72d48467f348b5ad9bcf74ab9cc0e846c79f537b49e3e1017bf80ea0516cac977 diff --git a/app-editors/lighttable-bin/lighttable-bin-0.8.1-r1.ebuild b/app-editors/lighttable-bin/lighttable-bin-0.8.1-r1.ebuild new file mode 100644 index 0000000..17b55e7 --- /dev/null +++ b/app-editors/lighttable-bin/lighttable-bin-0.8.1-r1.ebuild @@ -0,0 +1,39 @@ +EAPI=6 + +inherit eutils + +DESCRIPTION="The next generation code editor" +HOMEPAGE="http://lighttable.com/" +MY_PN="${PN%%-bin}" +MY_P="${MY_PN}-${PV}" +MY_PA="${MY_P}-linux" +SRC_URI="https://github.com/LightTable/LightTable/releases/download/${PV}/${MY_PA}.tar.gz" + +RESTRICT="mirror strip" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + x11-libs/libnotify + dev-libs/libgcrypt + virtual/libudev +" + +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_PA}" + +src_install() { + insinto /opt/${MY_PN} + doins -r * || die + + exeinto /opt/${MY_PN} + doexe LightTable + + dosym /opt/${MY_PN}/LightTable /usr/bin/LightTable + + newicon resources/app/core/img/lticon.png lighttable.png + make_desktop_entry "/opt/${MY_PN}/LightTable %F" LightTable lighttable "Utility;Development;TextEditor;" "MimeType=text/plain" +}