view xfce/thunar/thunar.sh @ 1218:57dc83a39b13

misc: switch back to standard FHS
author David Demelier <markand@malikania.fr>
date Thu, 30 Sep 2021 08:58:34 +0200
parents 6710613b88b9
children 337f950c30f5
line wrap: on
line source

#!/bin/sh
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

PKGNAME=thunar
PKGVERSION=1.8.9
PKGREVISION=1
PKGLICENSE="GPLv20 LGPLv20"
PKGSUMMARY="Xfce file manager"
PKGDOWNLOAD="http://archive.xfce.org/xfce/4.14/src/Thunar-$PKGVERSION.tar.bz2"
PKGDEPENDS="gdk-pixbuf
            gtk
            glib
            libsm
            libx11
            exo
            libxfce4ui
            libxfce4util
            xfconf"
PKGOPTIONS="DBUS EXIF INTROSPECTION NLS NOTIFICATIONS PCRE STARTUP UDEV"

: ${CHOST:=$(uname -m)-linux-musl}
: ${CBUILD:=$(uname -m)-linux-musl}
: ${CC:=clang}
: ${CFLAGS:=-O2}
: ${LDFLAGS:=}
: ${LIBS:=}
: ${DBUS:=yes}
: ${EXIF:=yes}
: ${INTROSPECTION:=yes}
: ${NLS:=yes}
: ${NOTIFICATIONS:=yes}
: ${PCRE:=yes}
: ${STARTUP:=yes}
: ${UDEV:=yes}

if [ "$DBUS" = "yes" ]; then
	PKGDEPENDS="dbus-glib $PKGDEPENDS"
	with_dbus="--enable-dbus"
else
	with_dbus="--disable-dbus"
fi

if [ "$EXIF" = "yes" ]; then
	PKGDEPENDS="libexif $PKGDEPENDS"
	with_exif="--enable-exif"
else
	with_exif="--disable-exif"
fi

if [ "$INTROSPECTION" = "yes" ]; then
	PKGDEPENDS="gobject-introspection:build $PKGDEPENDS"
	with_introspection="--enable-introspection"
else
	with_introspection="--disable-introspection"
fi

if [ "$NLS" = "yes" ]; then
	PKGDEPENDS="gettext $PKGDEPENDS"
	with_nls="--enable-nls"
else
	with_nls="--disable-nls"
fi

if [ "$NOTIFICATIONS" = "yes" ]; then
	PKGDEPENDS="libnotify $PKGDEPENDS"
	with_notifications="--enable-libnotify"
else
	with_notifications="--disable-libnotify"
fi

if [ "$PCRE" = "yes" ]; then
	PKGDEPENDS="pcre $PKGDEPENDS"
	with_pcre="--enable-pcre"
else
	with_pcre="--disable-pcre"
fi

if [ "$STARTUP" = "yes" ]; then
	PKGDEPENDS="startup-notification $PKGDEPENDS"
	with_startups="--enable-startup-notification"
else
	with_startups="--disable-startup-notification"
fi

if [ "$UDEV" = "yes" ]; then
	PKGDEPENDS="libgudev $PKGDEPENDS"
	with_udev="--enable-gudev"
else
	with_udev="--disable-gudev"
fi

rm -rf Thunar-$PKGVERSION
tar xvf Thunar-$PKGVERSION.tar.bz2
cd Thunar-$PKGVERSION

CC="$CC" \
CFLAGS="$CFLAGS" \
LDFLAGS="$LDFLAGS" \
LIBS="$LIBS" \
./configure \
	--build=$CBUILD \
	--host=$CHOST \
	--prefix=/usr \
	--localedir=/share/locale \
	--with-locales-dir=/share/locale \
	$with_dbus \
	$with_exif \
	$with_introspection \
	$with_nls \
	$with_notifications \
	$with_pcre \
	$with_startup \
	$with_udev
make
make install DESTDIR=$DESTDIR
find $DESTDIR -type f -name "*.la" -delete

cd ..
rm -rf Thunar-$PKGVERSION