Skip to content

Instantly share code, notes, and snippets.

@Sembiance
Created October 1, 2020 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sembiance/ff82ab5af482627773dd80e3e04d3718 to your computer and use it in GitHub Desktop.
Save Sembiance/ff82ab5af482627773dd80e3e04d3718 to your computer and use it in GitHub Desktop.
Gentoo ebuild for GIMP AppImage version with resynthesizer
EAPI="7"
DESCRIPTION="GNU Image Manipulation Program - AppImage version with Resynthesizer plugin"
HOMEPAGE="https://github.com/aferrero2707/gimp-appimage"
MY_PV="${PV/_p/-}"
APPIMAGE_FILENAME="GIMP_AppImage-git-${MY_PV}-withplugins-x86_64.AppImage"
SRC_URI="https://github.com/aferrero2707/${PN}/releases/download/continuous/${APPIMAGE_FILENAME}"
S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="mirror"
src_install() {
exeinto /opt/gimp-appimage
doexe ${DISTDIR}/${APPIMAGE_FILENAME}
dosym ../gimp-appimage/${APPIMAGE_FILENAME} /opt/bin/gimp
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment