blob: c046979ea5997d5178c255367a11b58243c13f8d (
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
|
# Maintainer: Mattia Borda <mattiagiovanni.borda@icloud.com>
# Contributor: Philip Goto <philip.goto@gmail.com>
# Contributor: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=file-roller-git
pkgver=43.0.r16.ge8a2899d
pkgrel=1
pkgdesc="Create and modify archives"
url="https://wiki.gnome.org/Apps/FileRoller"
arch=(i686 x86_64 armv7h aarch64)
license=(GPL2)
depends=(gtk3 libarchive file libnotify zip unzip libportal-gtk3)
makedepends=(yelp-tools git libnautilus-extension meson appstream-glib)
optdepends=('p7zip: 7z, arj, exe and encrypted zip files support'
'unrar: better RAR archive support'
'unace: ACE archive support'
'lrzip: lrzip archive support'
'squashfs-tools: squashfs image support')
conflicts=(${pkgname%-git})
provides=(${pkgname%-git})
groups=(gnome)
source=("git+https://gitlab.gnome.org/GNOME/${pkgname%-git}")
b2sums=('SKIP')
pkgver() {
cd file-roller
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson ${pkgname%-git} build
ninja -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
DESTDIR="$pkgdir" meson install -C build
}
|