27 lines
No EOL
543 B
Bash
27 lines
No EOL
543 B
Bash
# Copyright 2023 Avishek Sen
|
|
# Distributed under the terms of the GNU General Public License v3
|
|
|
|
EAPI=8
|
|
|
|
#inherit autotools
|
|
|
|
DESCRIPTION="OpenGL window and compositing manager"
|
|
HOMEPAGE="https://gitlab.com/compiz/compiz-core"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
RDEPEND="x11-libs/startup-notification"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND=""
|
|
|
|
SRC_URI="https://gitlab.com/compiz/compiz-core/-/archive/v0.8.18/compiz-core-v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
S=${WORKDIR}/compiz-core-v${PV}
|
|
|
|
src_prepare() {
|
|
bash autogen.sh
|
|
eapply_user
|
|
} |