27 lines
451 B
Bash
27 lines
451 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
EGIT_REPO_URI="https://bis64wqhh3louusbd45iyj76kmn4rzw5ysawyan5bkxwyzihj67c5lid.onion/anon/mergepics.git"
|
|
inherit git-r3-tor
|
|
|
|
DESCRIPTION="Image merging script."
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
DEPEND=""
|
|
RDEPEND="app-shells/bash"
|
|
BDEPEND=""
|
|
|
|
src_compile() {
|
|
true
|
|
}
|
|
|
|
src_install() {
|
|
mv MergePics.sh mergePics
|
|
dobin mergePics
|
|
}
|