blob: c6cc01a7d2e3de249d5a30efa4b74045f22d45c4 (
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
32
33
34
35
36
|
# Maintainer: Essem <smswessem@gmail.com>
pkgname=vipsdisp
pkgver=3.1.0
pkgrel=3
pkgdesc="Tiny libvips / gtk+4 image viewer"
arch=('x86_64')
url="https://github.com/jcupitt/vipsdisp"
license=('MIT')
depends=(
'cairo'
'dconf'
'gcc-libs'
'gdk-pixbuf2'
'glib2'
'glibc'
'gtk4'
'hicolor-icon-theme'
'libvips'
)
makedepends=(
'meson'
'cmake'
'glib2-devel'
)
source=("$pkgname-$pkgver.tar.xz::$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz")
sha256sums=('5c40e71c9c60232dcbf2e1c389295a4a102a27603bce994dbb2e35ff4f1844db')
build() {
meson setup build $pkgname-$pkgver --prefix=/usr
meson compile -C build
}
package() {
meson install -C build --destdir="$pkgdir"
}
|