2019-07-19 01:31:37 +02:00
|
|
|
# Description: Modern, fast and easy-to-use file manager for Xfce
|
|
|
|
# URL: https://www.xfce.org
|
2023-06-30 16:08:34 -04:00
|
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
2024-12-16 01:59:34 -05:00
|
|
|
# Depends on: exo libxfce4ui gnome-icon-theme libgudev libnotify xfce4-panel gvfs libexif tumbler
|
2019-04-24 17:15:26 +02:00
|
|
|
|
|
|
|
name=thunar
|
2024-12-16 01:59:34 -05:00
|
|
|
version=4.20.0
|
2023-06-30 16:08:34 -04:00
|
|
|
release=1
|
2020-09-30 02:17:16 +02:00
|
|
|
source=(https://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2)
|
2019-04-24 17:15:26 +02:00
|
|
|
|
|
|
|
build() {
|
2019-05-11 19:09:44 +02:00
|
|
|
|
2020-02-23 21:53:31 +01:00
|
|
|
cd $name-$version
|
2020-03-24 18:28:03 +01:00
|
|
|
|
2019-10-28 16:10:16 +01:00
|
|
|
./configure \
|
2019-06-04 21:42:18 +02:00
|
|
|
--prefix=/usr \
|
2019-06-07 00:13:38 +02:00
|
|
|
--libexecdir=/usr/lib/$name \
|
2019-10-28 16:10:16 +01:00
|
|
|
--sysconfdir=/etc \
|
2023-06-30 16:08:34 -04:00
|
|
|
--disable-gtk-doc \
|
2024-12-16 01:59:34 -05:00
|
|
|
--disable-nls \
|
|
|
|
--enable-gtk-doc-html=no
|
2019-05-11 19:09:44 +02:00
|
|
|
|
2019-04-30 02:46:22 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2019-07-06 18:46:23 +02:00
|
|
|
|
2024-12-16 01:59:34 -05:00
|
|
|
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
|
|
rm -rf $PKG/usr/lib/systemd
|
2020-03-24 18:28:03 +01:00
|
|
|
|
2019-04-24 17:15:26 +02:00
|
|
|
}
|