Version 1.6.1

This commit is contained in:
Martin Brodbeck 2022-09-27 09:01:27 +02:00
parent a23de4dcf0
commit 9d7492c745
3 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.8) cmake_minimum_required(VERSION 3.8)
project(kima2 VERSION 1.6.0) project(kima2 VERSION 1.6.1)
set(CMAKE_MODULE_PATH "${CMAKE_HOME_DIRECTORY}/cmake") set(CMAKE_MODULE_PATH "${CMAKE_HOME_DIRECTORY}/cmake")

View File

@ -1,4 +1,4 @@
project('kima2', 'cpp', default_options : ['cpp_std=c++20'], version : '1.6.0') project('kima2', 'cpp', default_options : ['cpp_std=c++20'], version : '1.6.1')
conf_data = configuration_data() conf_data = configuration_data()
conf_data.set('PROJECT_VERSION', '"' + meson.project_version() + '"') conf_data.set('PROJECT_VERSION', '"' + meson.project_version() + '"')

View File

@ -1,6 +1,6 @@
# Maintainer: Martin Brodbeck <martin at brodbeck-online dot de> # Maintainer: Martin Brodbeck <martin at brodbeck-online dot de>
pkgname=kima2 pkgname=kima2
pkgver=1.6.0 pkgver=1.6.1
pkgrel=1 pkgrel=1
pkgdesc="A small cash point program for children's things markets (German only)" pkgdesc="A small cash point program for children's things markets (German only)"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
@ -8,12 +8,13 @@ url="http://www.rustysoft.de/software/kima2"
license=('custom') license=('custom')
depends=('glibc' 'libusb' 'qt6-base' 'sqlite3' 'xlnt') depends=('glibc' 'libusb' 'qt6-base' 'sqlite3' 'xlnt')
makedepends=('boost>=1.62') makedepends=('boost>=1.62')
source=(git+https://git.rustysoft.de/martin/kima2-cpp) source=(git+https://git.rustysoft.de/martin/kima2)
sha256sums=('SKIP') sha256sums=('SKIP')
build() { build() {
cd $pkgname-cpp cd $pkgname
git checkout v$pkgver
git submodule init git submodule init
git submodule update git submodule update
@ -27,7 +28,7 @@ build() {
} }
package() { package() {
cd $pkgname-cpp/build cd $pkgname/build
make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" install
cd .. cd ..
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"