blob: 720bc878b3abb9bf63da2c8878739aa1a6dda47b (
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
27
28
29
30
31
|
# Maintainer: willemw <willemw12@gmail.com>
pkgname=fotocx
pkgver=25.0
pkgrel=1
pkgdesc='Image editing and collection management program'
url=https://www.kornelix.net/fotocx/fotocx.html
arch=(x86_64)
license=(GPL-3.0-or-later)
depends=(dcraw gtk3 libchamplain perl-image-exiftool xdg-utils xorg-xmessage)
optdepends=(
'darktable: organize and develop raw images'
'dvd+rw-tools: for burning CDs, DVDs and Blue-rays'
'ffmpeg: for video files'
'ghostscript: for .pdf, .ps and .eps files'
'hugin: for panorama photos'
'libheif: for .heic, .avif and .webp files'
'liborigin: for .jp2 files'
'rawtherapee: for raw image processing'
'vlc: for viewing video')
replaces=(fotoxx)
source=("https://www.kornelix.net/downloads/downloads/$pkgname-$pkgver-source.tar.gz")
sha256sums=('1d78106e91fcabfb07343f2d00201a745cb114935fee273b0547e68c794a5f7e')
build() {
make -C $pkgname PREFIX=/usr
}
package() {
make -C $pkgname PREFIX=/usr ICONDIR=/usr/share/pixmaps DESTDIR="$pkgdir" install
}
|