LinuxCommandLibrary

ebuild

ebuild

TLDR

Create or update the package manifest

$ ebuild [path/to/file.ebuild] manifest
copy


Clean the temporary build directories for the build file
$ ebuild [path/to/file.ebuild] clean
copy


Fetch sources if they do not exist
$ ebuild [path/to/file.ebuild] fetch
copy


Extract the sources to a temporary build directory
$ ebuild [path/to/file.ebuild] unpack
copy


Compile the extracted sources
$ ebuild [path/to/file.ebuild] compile
copy


Install the package to a temporary install directory
$ ebuild [path/to/file.ebuild] install
copy


Install the temporary files to the live filesystem
$ ebuild [path/to/file.ebuild] qmerge
copy


Fetch, unpack, compile, install and qmerge the specified ebuild file
$ ebuild [path/to/file.ebuild] merge
copy

Copied to clipboard