mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Update to version 0.8.1
This commit is contained in:
parent
2df5b428f3
commit
0f76eafb04
2 changed files with 12 additions and 6 deletions
7
.SRCINFO
7
.SRCINFO
|
|
@ -1,6 +1,6 @@
|
|||
pkgbase = crossmacro
|
||||
pkgdesc = Cross-platform mouse and keyboard macro automation tool
|
||||
pkgver = 0.8.0
|
||||
pkgver = 0.8.1
|
||||
pkgrel = 1
|
||||
url = https://github.com/alper-han/CrossMacro
|
||||
install = crossmacro.install
|
||||
|
|
@ -19,10 +19,11 @@ pkgbase = crossmacro
|
|||
depends = libxcursor
|
||||
depends = libxrandr
|
||||
depends = polkit
|
||||
depends = libxtst
|
||||
options = !strip
|
||||
source = crossmacro-0.8.0.tar.gz::https://github.com/alper-han/CrossMacro/archive/v0.8.0.tar.gz
|
||||
source = crossmacro-0.8.1.tar.gz::https://github.com/alper-han/CrossMacro/archive/v0.8.1.tar.gz
|
||||
source = crossmacro.sysusers
|
||||
sha256sums = 2627ffa29e884a5fc94124045fde98c7771f84f35e6f77ac5e6f89446e981f0c
|
||||
sha256sums = e33c8eb396531f35b10f525538c466fd4cf6d49372067cdfaad9b4c5cb07f62c
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = crossmacro
|
||||
|
|
|
|||
11
PKGBUILD
11
PKGBUILD
|
|
@ -1,17 +1,17 @@
|
|||
# Maintainer: Zynix <crossmacro@zynix.net>
|
||||
pkgname=crossmacro
|
||||
pkgver=0.8.0
|
||||
pkgver=0.8.1
|
||||
pkgrel=1
|
||||
pkgdesc="Cross-platform mouse and keyboard macro automation tool"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/alper-han/CrossMacro"
|
||||
license=('GPL-3.0')
|
||||
depends=('glibc' 'gcc-libs' 'zlib' 'openssl' 'fontconfig' 'libx11' 'libxcursor' 'libxrandr' 'polkit')
|
||||
depends=('glibc' 'gcc-libs' 'zlib' 'openssl' 'fontconfig' 'libx11' 'libxcursor' 'libxrandr' 'polkit' 'libxtst')
|
||||
makedepends=('dotnet-sdk>=10.0' 'git' 'clang' 'zlib')
|
||||
options=('!strip')
|
||||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/alper-han/CrossMacro/archive/v${pkgver}.tar.gz"
|
||||
"crossmacro.sysusers")
|
||||
sha256sums=('2627ffa29e884a5fc94124045fde98c7771f84f35e6f77ac5e6f89446e981f0c'
|
||||
sha256sums=('e33c8eb396531f35b10f525538c466fd4cf6d49372067cdfaad9b4c5cb07f62c'
|
||||
'SKIP') # sysusers file checksum (local file)
|
||||
install=crossmacro.install
|
||||
|
||||
|
|
@ -76,6 +76,11 @@ package() {
|
|||
# Install Polkit Policy
|
||||
install -Dm644 "scripts/assets/org.crossmacro.policy" \
|
||||
"$pkgdir/usr/share/polkit-1/actions/org.crossmacro.policy"
|
||||
|
||||
# Install Polkit Rules
|
||||
install -dm755 "$pkgdir/usr/share/polkit-1/rules.d"
|
||||
install -Dm644 "scripts/assets/50-crossmacro.rules" \
|
||||
"$pkgdir/usr/share/polkit-1/rules.d/50-crossmacro.rules"
|
||||
|
||||
# Create executable symlink for UI
|
||||
install -dm755 "$pkgdir/usr/bin"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue