aboutsummaryrefslogtreecommitdiffstats
path: root/community/thunar/APKBUILD
blob: 48d16e1fff71653d8c2242022f82856ae57dde82 (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
71
72
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=thunar
pkgver=1.8.4
pkgrel=0
pkgdesc="File manager for Xfce"
url="https://xfce.org"
arch="all"
license="GPL-2.0-or-later LGPL-2.0-only"
depends="desktop-file-utils hicolor-icon-theme shared-mime-info"
depends_dev="exo-dev"
makedepends="$depends_dev libexif-dev xfce4-panel-dev pcre-dev libgudev-dev
	libnotify-dev startup-notification-dev libxfce4ui-dev dbus-glib-dev
	gtk-doc gtk+3.0-dev glib-dev"
install="$pkgname.post-install"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="https://archive.xfce.org/src/xfce/thunar/${pkgver%.*}/Thunar-$pkgver.tar.bz2
	thunar-sendto-audacious-playlist.desktop
	thunar-sendto-bluetooth.desktop
	"
builddir="$srcdir"/Thunar-$pkgver

prepare() {
	cd "$builddir"
	# fix icon in thunar-sendto-email.desktop
	sed -i 's!internet-mail!mail-message-new!' \
		plugins/thunar-sendto-email/thunar-sendto-email.desktop.in.in
	default_prepare
}

build() {
	cd "$builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--libexecdir=/usr/lib \
		--localstatedir=/var \
		--disable-static \
		--enable-exif \
		--enable-pcre \
		--enable-dbus \
		--enable-gio-unix \
		--enable-gudev \
		--enable-gtk-doc
	make
}

check() {
	cd "$builddir"
	make check
}

package() {
	cd "$builddir"
	local f
	make DESTDIR="$pkgdir" install
	sed -i -e 's:x-directory/gnome-default-handler;::' \
		"$pkgdir"/usr/share/applications/Thunar-folder-handler.desktop
	for f in $source; do
		case $f in
		thunar-sendto*.desktop)
			install -m644 "$srcdir"/$f \
				"$pkgdir"/usr/share/Thunar/sendto/
			;;
		esac
	done
}

sha512sums="886c0789aa19c2ab2ef34892c4afd09c857585b4796140ea3c84ccb9e1e1ca2935cf7e3a760a6ca8d8c68a5866663412500b4779878c7f48c9365c3ac7bf0eec  Thunar-1.8.4.tar.bz2
dce525f22abf8e723111673b8fdad48079d5379cef49cc013383bb0944274cdd0de1dda6e8894dd8c9efb54cc9eea2baf8f4c76265665b84f3f58aeb01c72390  thunar-sendto-audacious-playlist.desktop
b4e8024e093b8e3f9bf5d460335fd9d19c1e394383bd58a7ac05c720103612dea9dde8a02f090f0af09d89e6644b292236ef257dd1790eccd627efce0577828e  thunar-sendto-bluetooth.desktop"