blob: 538bb451f8acd2868c55dba97f865ec068ae4bf3 (
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
67
68
69
70
|
# Maintainer: Santiago Burgos <santiago.burgos1089@gmail.com>
# Contributor: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# Contributor: Fabian Bornschein <fabiscafe@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=file-roller-linuxmint
_pkgname=file-roller
pkgver=43.0
_pkgver=wilma
pkgrel=2
pkgdesc="Create and modify archives. Linux Mint version"
url="https://wiki.gnome.org/Apps/FileRoller"
arch=(x86_64)
license=(GPL-2.0-or-later)
depends=(
'dconf'
'file'
'gcc-libs'
'glib2'
'glibc'
'gtk3'
'hicolor-icon-theme'
'json-glib'
'libarchive'
'libportal-gtk3'
'pango'
'unzip'
'zip'
)
makedepends=(
'appstream-glib'
'libnautilus-extension'
'meson'
'yelp-tools'
)
provides=(
${_pkgname}
file-roller-gtk3
)
conflicts=(
${_pkgname}
file-roller-gtk3
)
optdepends=(
'lrzip: lrzip archive support'
'p7zip: 7z, arj, exe and encrypted zip files support'
'squashfs-tools: squashfs image support'
'unace: ACE archive support'
'unrar: better RAR archive support'
)
#source=("http://packages.linuxmint.com/pool/upstream/f/${_pkgname}/${_pkgname}_${pkgver}-${pkgrel}+${_pkgver}.tar.xz")
source=("http://packages.linuxmint.com/pool/upstream/f/${_pkgname}/${_pkgname}_${pkgver}+mint1+${_pkgver}.tar.xz")
sha256sums=('32b3a7a803ac53889c25c006622229685e8bf421bde70712f9f221967df44978')
prepare() {
cd $_pkgname
}
build() {
arch-meson $_pkgname build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "$pkgdir"
}
|