summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam2023-08-10 13:07:01 -0400
committerWilliam2023-08-10 13:07:01 -0400
commit9c111d8bcbf1467e39d5740b63bbfc4c6a42b498 (patch)
tree7787f8b7f5482c3617049d89ea27a87b24c0f505
downloadaur-9c111d8bcbf1467e39d5740b63bbfc4c6a42b498.tar.gz
Add webcamize 1.2.0 / initial commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD16
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..c96985b20465
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = webcamize
+ pkgdesc = Use any camera as a webcam—DSLR, mirrorless, camcorder, point-and-shoot, and even some smartphones/tablets!
+ pkgver = 1.2.0
+ pkgrel = 1
+ url = https://github.com/weebney/webcamize
+ arch = any
+ license = BSD-2-Clause
+ depends = ffmpeg
+ depends = gphoto2
+ depends = v4l2loopback-dkms
+ source = webcamize-1.2.0::git+https://github.com/weebney/webcamize.git#tag=v1.2.0
+ md5sums = SKIP
+
+pkgname = webcamize
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..60644b234344
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: weebney <weebney at gmail dot com>
+pkgname=webcamize
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="Use any camera as a webcam—DSLR, mirrorless, camcorder, point-and-shoot, and even some smartphones/tablets! "
+arch=('any')
+url="https://github.com/weebney/webcamize"
+license=('BSD-2-Clause')
+depends=('ffmpeg' 'gphoto2' 'v4l2loopback-dkms')
+source=("$pkgname-$pkgver::git+$url.git#tag=v$pkgver")
+md5sums=('SKIP')
+
+package() {
+ cd "$pkgname-$pkgver"
+ install -Dm755 "./webcamize" "$pkgdir/usr/bin/webcamize"
+}