From patchwork Mon Nov 23 16:43:12 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 10472 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 8D19CBE08A for ; Mon, 23 Nov 2020 16:45:01 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 37C9B633F1; Mon, 23 Nov 2020 17:45:01 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="rwdZZcdC"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 630D7633F0 for ; Mon, 23 Nov 2020 17:44:58 +0100 (CET) Received: from Q.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id E8F085A6; Mon, 23 Nov 2020 17:44:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1606149898; bh=eGOD0ERkSrh+rYDXGtunSC0Hk4IjYH8e1eCj+Keasd8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rwdZZcdCSciVnptjnaLtqP1z2+PF5zW6K+PYdUDnVQ/w7sZ3DHcRNNcAR91d+tFHc LAqnsOGFfZI9qbBSnJ3eLO2L/V9U2IfpO6uRnSZs97Owf9qAGkvECTX4aHNg92LuHD AI4zUogeh1wUbQg88iAVArYZTDlZPHl6ucZwJVIM= From: Kieran Bingham To: libcamera devel Date: Mon, 23 Nov 2020 16:43:12 +0000 Message-Id: <20201123164319.152742-2-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20201123164319.152742-1-kieran.bingham@ideasonboard.com> References: <20201123164319.152742-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [RFC PATCH 1/8] meson: Simplify pkg_mod.generate X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Later versions of meson allow for the first positional argument to specificy the defaults. Specify the libcamera library as the first argument, and remove the filebase. Signed-off-by: Kieran Bingham --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 55cf36e15f57..ced4afa7d726 100644 --- a/meson.build +++ b/meson.build @@ -146,10 +146,9 @@ run_command('ln', '-fsT', meson.source_root(), configure_file(output : 'config.h', configuration : config_h) pkg_mod = import('pkgconfig') -pkg_mod.generate(libraries : libcamera, +pkg_mod.generate(libcamera, version : '1.0', name : 'libcamera', - filebase : 'camera', description : 'Complex Camera Support Library', subdirs : 'libcamera')