media-video/webcamize: add 2.0.0

Signed-off-by: Timur Kuprava <kupravagoodman@proton.me>
This commit is contained in:
Timur Kuprava
2025-06-08 17:33:40 +03:00
parent d5cb008f1e
commit bcb87ee68c
2 changed files with 19 additions and 8 deletions

View File

@@ -1 +1 @@
DIST webcamize-1.2.0.tar.gz 8265451 BLAKE2B ff807c448e5545621cbd4ed80bda27b36de27c4f93dda928ffdf4a558890ea023a2013aaf6c2f2205c93d3ea843492c54e4a56c8d1b34ec1e92834177206e565 SHA512 74abd34188a99ebc3b3fa26c47c921d0172dc09c5d432d33d7307a02e3ee1fc1e9f53c3acc7839fa74930d55d34472a5a77ef40e464fb139e51109dca9ccd8cb
DIST webcamize-2.0.0.tar.gz 8264448 BLAKE2B cf13310c08317a7f5f47ec4d1f5b7e22177deef29e712c7f5157b0bcd61dcf4a8b304c89be065caa013051fb32420e03f2a319274af3be6280ea8081d8df8b3b SHA512 0962083122903b6418f982df67b469079adb3ba2404dbcf391bdfee8bb9b5c77e3274c2de25503092c329d51447e6265473f3f2348e77b06784f75eb825bd9b7

View File

@@ -3,9 +3,7 @@
EAPI=8
inherit systemd
DESCRIPTION="Use almost any camera as a webcam—DSLRs, mirrorless, camcorders, and even point-and-shoots"
DESCRIPTION="Use almost any camera as a webcam—DSLRs, mirrorless, camcorders, and more"
HOMEPAGE="https://github.com/cowtoolz/webcamize"
SRC_URI="https://github.com/cowtoolz/webcamize/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
@@ -13,8 +11,21 @@ LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
src_install() {
dobin webcamize
elog "Installing webcamize systemd service"
systemd_dounit webcamize.service
DEPEND="
media-video/v4l2loopback
media-video/ffmpeg
media-libs/libgphoto2
"
src_compile() {
emake
}
src_install() {
emake \
DESTDIR="${D}" \
PREFIX="/usr" \
BINDIR="bin" \
install
dodoc readme.md
}