blob: 08f1fb1641df201b3e03ef38a99f717716188898 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: Jari Ahola <aphototool@ahola.me>
pkgname=aphototoollibre
pkgver=1.0.5
pkgrel=3
pkgdesc="Photo editor for Linux"
arch=('x86_64' 'aarch64')
url="https://www.ahola.me/aphototoollibre.html"
license=('GPL3')
depends=('qt5-base>=5.15.2' 'hicolor-icon-theme')
makedepends=()
source=("$pkgname-$pkgver-$pkgrel-src.tar.gz::https://github.com/aphototool/A-Photo-Tool-Libre/archive/refs/tags/v$pkgver-$pkgrel.tar.gz"
"$pkgname-$pkgver-$pkgrel-src.tar.gz.asc::https://github.com/aphototool/A-Photo-Tool-Libre/releases/download/v$pkgver-$pkgrel/v$pkgver-$pkgrel.tar.gz.asc")
sha256sums=('f28201302d36c510e542e7d11653afddba0a2df4a829bc5e810f7ed5c365b5d3' 'SKIP')
validpgpkeys=('A970F7E40CB64F0D5B9FC516AFE56C2DF614820C')
build() {
cd "$srcdir/A-Photo-Tool-Libre-$pkgver-$pkgrel"
qmake
make
}
package() {
cd "$srcdir/A-Photo-Tool-Libre-$pkgver-$pkgrel"
make INSTALL_ROOT="$pkgdir/" install
}
|