changeset 445:a58d58a62056

xfce/xfce4-panel: initial import, closes #1498
author David Demelier <markand@malikania.fr>
date Fri, 05 Apr 2019 12:56:31 +0200
parents b159c8eec432
children 583a3428c058
files xfce/xfce4-panel/xfce4-panel.sh
diffstat 1 files changed, 68 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/xfce4-panel/xfce4-panel.sh	Fri Apr 05 12:56:31 2019 +0200
@@ -0,0 +1,68 @@
+#!/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=xfce4-panel
+PKGVERSION=4.12.0
+PKGREVISION=1
+PKGLICENSE="GPLv2 LGPLv21"
+PKGSUMMARY="Xfce panel"
+PKGDOWNLOAD="http://archive.xfce.org/xfce/4.12/src/$PKGNAME-$PKGVERSION.tar.bz2"
+PKGDEPENDS="desktop/libwnck2
+            graphics/cairo
+            graphics/gtk2
+            graphics/gtk3
+            lib/dbus-glib
+            lib/glib
+            x11/libx11
+            xfce/exo
+            xfce/libxfce4ui
+            xfce/libxfce4util
+            xfce/xfconf"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+
+build()
+{
+	rm -rf $PKGNAME-$PKGVERSION
+	tar xvaf $PKGNAME-$PKGVERSION.tar.bz2
+	pushd $PKGNAME-$PKGVERSION
+
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--build=$CBUILD \
+		--host=$CHOST \
+		--prefix=/usr \
+		--sysconfdir=/etc \
+		--enable-gtk3 \
+		--localedir=/usr/share/locale \
+		--with-locales-dir=/usr/share/locale
+	make
+	make install DESTDIR=$DESTDIR itlocaledir=/usr/share/locale
+	rm -f $DESTDIR/usr/lib/libxfce4panel-*.la
+	rm -f $DESTDIR/usr/lib/xfce4/panel/plugins/*.la
+
+	popd
+	rm -rf $PKGNAME-$PKGVERSION
+}