view xfce/thunar/thunar.sh @ 788:6a808b0ef460

xfce/xfce4-notifyd: initial import, closes #1769
author David Demelier <markand@malikania.fr>
date Mon, 12 Aug 2019 15:59:51 +0200
parents 5f73d478ab71
children e693904f5e20
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.6.6
PKGREVISION=1
PKGLICENSE="GPLv2 LGPLv20"
PKGSUMMARY="Xfce file manager"
PKGDOWNLOAD="http://archive.xfce.org/xfce/4.12/src/Thunar-$PKGVERSION.tar.bz2"
PKGDEPENDS="graphics/gdk-pixbuf
            graphics/gtk2
            lib/glib
            x11/libsm
            x11/libx11
            xfce/exo
            xfce/libxfce4ui
            xfce/libxfce4util
            xfce/xfconf"
PKGOPTIONS="DBUS EXIF 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}
: ${NLS:=yes}
: ${NOTIFICATIONS:=yes}
: ${PCRE:=yes}
: ${STARTUP:=yes}
: ${UDEV:=yes}

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

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

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

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

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

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

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

build()
{
	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= \
		--with-locales-dir=/share/locale \
		$with_dbus \
		$with_exif \
		$with_nls \
		$with_notifications \
		$with_pcre \
		$with_startup \
		$with_udev
	make
	make install DESTDIR=$DESTDIR

	cd ..
	rm -rf Thunar-$PKGVERSION
}