Date: Thursday, December 15, 2022 @ 13:46:39
Author: foutrelis
Revision: 464374
archrelease: copy trunk to staging-x86_64
Added:
thunar/repos/staging-x86_64/
thunar/repos/staging-x86_64/PKGBUILD
(from rev 464373, thunar/trunk/PKGBUILD)
----------+
PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
Copied: thunar/repos/staging-x86_64/PKGBUILD (from rev 464373,
thunar/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-12-15 13:46:39 UTC (rev 464374)
@@ -0,0 +1,47 @@
+# Maintainer: Evangelos Foutras <[email protected]>
+# Contributor: Andrew Simmons <[email protected]>
+
+pkgname=thunar
+pkgver=4.18.0
+pkgrel=1
+pkgdesc="Modern, fast and easy-to-use file manager for Xfce"
+arch=('x86_64')
+url="https://docs.xfce.org/xfce/thunar/start"
+license=('GPL2' 'LGPL2.1')
+groups=('xfce4')
+depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
+ 'pcre2' 'libgudev' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
+makedepends=('intltool' 'gobject-introspection' 'xfce4-panel')
+optdepends=('gvfs: trash support, mounting with udisk and remote filesystems'
+ 'tumbler: thumbnail previews'
+ 'thunar-volman: removable device management'
+ 'thunar-archive-plugin: archive creation and extraction'
+ 'thunar-media-tags-plugin: view/edit ID3/OGG tags')
+options=('debug')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('d1f4b080c97b9e390eff199aaaac7562fb20f031686f8d5ee5207e953bfc2feb')
+
+prepare() {
+ cd $pkgname-$pkgver
+}
+
+build() {
+ cd $pkgname-$pkgver
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --enable-gio-unix \
+ --enable-gudev \
+ --enable-notifications \
+ --enable-exif \
+ --disable-debug
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: