blob: c1720d86c4481a64ef1d30b6e8f2a2e5886ac6b4 (
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
|
# Contributor: Martijn Braam <martijn@brixit.nl>
# Maintainer: Oliver Smith <ollieparanoid@postmarketos.org>
pkgname=megapixels
pkgver=0.13.2
pkgrel=0
pkgdesc="GTK+3 camera app for mobile devices"
url="https://git.sr.ht/~martijnbraam/megapixels"
arch="all"
license="GPL-3.0-only"
# Required by postprocess.sh
# depends="cmd:dcraw_emu cmd:convert cmd:exiftool"
depends="libraw-tools imagemagick exiftool"
makedepends="glib-dev gtk+3.0-dev tiff-dev meson"
source="
$pkgname-$pkgver.tar.gz::https://git.sr.ht/~martijnbraam/megapixels/archive/$pkgver.tar.gz
"
options="!check" # There's no testsuite
build() {
abuild-meson . output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="65017d747e6dffcc9a042525814b61989225a3ff97c7477f13d8cceac8b0088aab046548cc9666c5f6d23efec719d55aad51c68bbe423807836949274a22e1b6 megapixels-0.13.2.tar.gz"
|