Package Details: libcamera-git r3989.e0e54965-1

Git Clone URL: https://aur.archlinux.org/libcamera-git.git (read-only, click to copy)
Package Base: libcamera-git
Description: A complex camera support library for Linux, Android, and ChromeOS
Upstream URL: http://libcamera.org/
Licenses: LGPL2.1
Conflicts: libcamera
Provides: libcamera
Submitter: fordprefect
Maintainer: gmy
Last Packager: gmy
Votes: 13
Popularity: 0.90
First Submitted: 2018-12-06 09:51 (UTC)
Last Updated: 2022-10-11 08:56 (UTC)

Dependencies (22)

Required by (46)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6

f43nd1r commented on 2021-03-12 18:22 (UTC)

Please fix the make dependencies.

lviggiani commented on 2020-12-20 17:54 (UTC)

Please add the following make deps: boost and python-ply

jleahy commented on 2020-05-31 20:43 (UTC)

This should have boost added to makedepends.

JeremyT commented on 2020-05-22 19:52 (UTC)

My compilation was failing, and the only solution I found was to set options to !buildflags. (In the process I flailed about using the instructions in the README, which resulted in this diff that more closely follows the current docs, if you're interested):

diff --git a/PKGBUILD b/PKGBUILD
index 3298678..e31f299 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,6 +7,7 @@ url='http://libcamera.org/'
 #depends=(')
 makedepends=("meson")
 license=('LGPL')
+options=('!buildflags')
 source=('git://linuxtv.org/libcamera.git/')
 md5sums=('SKIP')

@@ -17,12 +18,11 @@ pkgver() {

 build() {
     cd "${srcdir}/libcamera"
-    meson build --prefix /usr
-    cd build
-    ninja
+    meson build --prefix=/usr
+    ninja -C build
 }

 package() {
-    cd "$srcdir/libcamera/build"
-    DESTDIR="${pkgdir}" ninja install
+    cd "$srcdir/libcamera"
+    DESTDIR="${pkgdir}" ninja -C build install
 }