blob: fa51a68afc8ac0998dbaf1ba183cc84056e63c39 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Maintainer: Blake Romero <blake@blkrom.com>
pkgname=swayimg-git
pkgver=3.7.r0.gd29dccb
pkgrel=1
pkgdesc="A lightweight image viewer for Wayland"
arch=('x86_64')
url="https://github.com/artemsen/swayimg"
license=('MIT')
groups=()
depends=(
'libjpeg-turbo'
'libjxl'
'libpng'
'giflib'
'librsvg'
'libwebp'
'libheif'
'libavif'
'libtiff'
'openexr'
'libexif'
'bash-completion'
'glibc'
'wayland'
'wayland-protocols'
'json-c'
'libxkbcommon'
'fontconfig'
'freetype2'
# 'hicolor-icon-theme'
# 'cairo'
# 'glib2'
)
makedepends=('git' 'meson' 'ninja')
optdepends=()
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}" "${pkgname}")
replaces=()
backup=()
options=()
install=
source=("${pkgname%-*}::git+${url}")
noextract=()
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-*}"
git describe --long --abbrev=7 --tags \
| sed 's/\([^-]*-g\)/r\1/; s/-/./g; s/^v//'
}
build() {
cd "$srcdir/${pkgname%-*}"
meson setup build --prefix=/usr
ninja -C build
}
package() {
cd "$srcdir/${pkgname%-*}"
DESTDIR="$pkgdir/" ninja -C build install
install -Dm 644 LICENSE \
"$pkgdir/usr/share/licenses/${pkgname%-*}/LICENSE"
}
|