From efe302adfcee8f20d7216e8f5542f4849158709c Mon Sep 17 00:00:00 2001 From: Gonzalo Exequiel Pedone Date: Thu, 26 Aug 2021 09:17:42 -0300 Subject: [PATCH] Properly mark installer as a GNU/Linux only installer. Updated version. --- ChangeLog | 4 ++++ package_info.conf.in | 1 + src/Makefile | 2 +- src/dkms.conf | 2 +- src/module.c | 2 +- 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5241be4..57eb301 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +akvcam 1.2.2: + +- Properly mark installer as a GNU/Linux only installer. + akvcam 1.2.1: - Fixed 'Swap Read and Blue' control. diff --git a/package_info.conf.in b/package_info.conf.in index dae32b1..81f559b 100644 --- a/package_info.conf.in +++ b/package_info.conf.in @@ -19,3 +19,4 @@ license = COPYING licenseName = GNU General Public License v2.0 or later script = ports/deploy/installscript.posix.qs changeLog = ChangeLog +pkgTargetPlatform = linux diff --git a/src/Makefile b/src/Makefile index 5b0abc4..2a81a31 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,5 +1,5 @@ MODULE_NAME = akvcam -MODULE_VERSION = 1.2.1 +MODULE_VERSION = 1.2.2 KERNEL_ROOT ?= $(shell realpath /lib/modules/$(shell uname -r)) KERNEL_DIR ?= $(KERNEL_ROOT)/build COPY = cp -f diff --git a/src/dkms.conf b/src/dkms.conf index 316ed0c..da15c97 100644 --- a/src/dkms.conf +++ b/src/dkms.conf @@ -1,5 +1,5 @@ PACKAGE_NAME="akvcam" -PACKAGE_VERSION="1.2.1" +PACKAGE_VERSION="1.2.2" MAKE[0]="make KERNEL_DIR=${kernel_source_dir} all" CLEAN="make clean" diff --git a/src/module.c b/src/module.c index 615fcca..519bf02 100644 --- a/src/module.c +++ b/src/module.c @@ -54,4 +54,4 @@ module_exit(akvcam_uninit) MODULE_LICENSE("GPL"); MODULE_AUTHOR("Gonzalo Exequiel Pedone"); MODULE_DESCRIPTION(AKVCAM_DRIVER_DESCRIPTION); -MODULE_VERSION("1.2.1"); +MODULE_VERSION("1.2.2");