Update dependencies

This commit is contained in:
2026-04-07 11:42:18 +03:00
parent 0baf61e703
commit 77275012f2
2 changed files with 16 additions and 8 deletions
+7 -7
View File
@@ -1,7 +1,7 @@
name: thunar name: thunar
description: A modern file manager for the Xfce Desktop Environment description: A modern file manager for the Xfce Desktop Environment
version: 4.20.8 version: 4.20.8
revision: 1 revision: 2
url: https://docs.xfce.org/xfce/thunar/start url: https://docs.xfce.org/xfce/thunar/start
license: GPL2-or-later,LGPL2.1-only license: GPL2-or-later,LGPL2.1-only
maintainers: maintainers:
@@ -12,23 +12,23 @@ depends:
- desktop-file-utils - desktop-file-utils
- exo - exo
- hicolor-icon-theme - hicolor-icon-theme
- libexif
- libgudev - libgudev
- libnotify - libnotify
- libpng
- libxfce4ui - libxfce4ui
- libxfce4util - libxfce4util
- pcre2 - pcre2
optional_depends: optional_depends:
- gvfs - gvfs:For trash support, mounting with udisk and remote filesystems
- thunar-archive-plugin - thunar-archive-plugin:For archive creation and extraction
- thunar-volman - thunar-volman:For removable device management
- tumbler - tumbler:For thumbnail previews
make_depends: make_depends:
- glib - glib
- gobject-introspection - gobject-introspection
- gtk-doc - gtk-doc
- xfce4-panel
- xfce4-dev-tools - xfce4-dev-tools
- xfce4-panel
downloads: downloads:
- url: https://gitlab.xfce.org/xfce/thunar/-/archive/thunar-${BPM_PKG_VERSION}/thunar-thunar-${BPM_PKG_VERSION}.tar.gz - url: https://gitlab.xfce.org/xfce/thunar/-/archive/thunar-${BPM_PKG_VERSION}/thunar-thunar-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
+9 -1
View File
@@ -12,7 +12,15 @@ prepare() {
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
./configure --prefix=/usr --sysconfdir=/etc --disable-debug --enable-maintainer-mode ./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-gio-unix \
--enable-gudev \
--enable-notifications \
--enable-exif \
--enable-gtk-doc \
--disable-debug \
--enable-maintainer-mode
make make
} }