changeset 792:a6030a75ce9a

xfce/thunar-volman: initial import, closes #1494
author David Demelier <markand@malikania.fr>
date Mon, 12 Aug 2019 17:01:02 +0200
parents 4e6f3e84200a
children 132a50bd2bb9
files xfce/thunar-volman/thunar-volman-post.sh xfce/thunar-volman/thunar-volman.sh xfce/thunar-volman/thunar-volman.sha1
diffstat 3 files changed, 100 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/thunar-volman/thunar-volman-post.sh	Mon Aug 12 17:01:02 2019 +0200
@@ -0,0 +1,20 @@
+#!/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.
+#
+
+if [ -x /bin/gtk-update-icon-cache ]; then
+	/bin/gtk-update-icon-cache -fqt /share/icons/hicolor
+fi
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/thunar-volman/thunar-volman.sh	Mon Aug 12 17:01:02 2019 +0200
@@ -0,0 +1,79 @@
+#!/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-volman
+PKGVERSION=0.9.5
+PKGREVISION=1
+PKGLICENSE="GPLv2"
+PKGSUMMARY="Xfce volume management plugin for thunar"
+PKGDOWNLOAD="http://archive.xfce.org/xfce/4.14/src/$PKGNAME-$PKGVERSION.tar.bz2"
+PKGDEPENDS="graphics/gtk
+            lib/glib
+            lib/libgudev
+            xfce/exo
+            xfce/libxfce4ui
+            xfce/libxfce4util
+            xfce/xfconf"
+PKGOPTIONS="NLS NOTIFICATIONS"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${NLS:=yes}
+: ${NOTIFICATIONS:=yes}
+
+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-notifications"
+else
+	with_notifications="--disable-notifications"
+fi
+
+build()
+{
+	rm -rf $PKGNAME-$PKGVERSION
+	tar xvf $PKGNAME-$PKGVERSION.tar.bz2
+	cd $PKGNAME-$PKGVERSION
+
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--build=$CBUILD \
+		--host=$CHOST \
+		--prefix= \
+		--localedir=/share/locale \
+		--with-locales-dir=/share/locale \
+		$with_nls \
+		$with_notifications
+	make
+	make install DESTDIR=$DESTDIR
+
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/thunar-volman/thunar-volman.sha1	Mon Aug 12 17:01:02 2019 +0200
@@ -0,0 +1,1 @@
+04efe6610c376d2541eac4e6615a9ffef720f872  thunar-volman-0.9.5.tar.bz2