36 lines
694 B
Bash
36 lines
694 B
Bash
# Copyright 2018 Julian Ospald <hasufell@posteo.de>
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
require github [ user=mhagger tag="v${PV}" ]
|
|
require python [ has_bin=true multibuild=false blacklist=2 ]
|
|
require bash-completion
|
|
|
|
SUMMARY="Incremental merge for git"
|
|
|
|
LICENCES="GPL-2.0"
|
|
SLOT="0"
|
|
PLATFORMS="~amd64 ~x86"
|
|
MYOPTIONS=""
|
|
|
|
DEPENDENCIES="
|
|
run:
|
|
dev-scm/git
|
|
"
|
|
|
|
BUGS_TO="hasufell@posteo.de"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# fix shebang
|
|
edo sed -i \
|
|
-e "s:/usr/bin/env python.*$:/usr/$(exhost --target)/bin/env ${PYTHON##*/}:" \
|
|
${PN}
|
|
}
|
|
|
|
src_install() {
|
|
dodoc README.rst
|
|
dobashcompletion ${PN}.bashcomplete
|
|
dobin ${PN}
|
|
}
|