changeset 442:70d31f15de7a

xfce/xfwm4: initial import, closes #1504
author David Demelier <markand@malikania.fr>
date Fri, 05 Apr 2019 12:24:41 +0200
parents a2066bb49b5f
children c75264836d1a
files xfce/xfwm4/xfwm4.sh
diffstat 1 files changed, 66 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/xfwm4/xfwm4.sh	Fri Apr 05 12:24:41 2019 +0200
@@ -0,0 +1,66 @@
+#!/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=xfwm4
+PKGVERSION=4.12.0
+PKGREVISION=1
+PKGLICENSE="GPLv2"
+PKGSUMMARY="Xfce window manager"
+PKGDOWNLOAD="http://archive.xfce.org/xfce/4.12/src/$PKGNAME-$PKGVERSION.tar.bz2"
+PKGDEPENDS="core/dbus
+            desktop/libwnck2
+            desktop/startup-notification
+            graphics/gtk2
+            lib/dbus-glib
+            x11/libdrm
+            x11/libsm
+            x11/libx11
+            x11/libxcomposite
+            x11/libxext
+            x11/libxrandr
+            x11/libxrender
+            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
+	make
+	make install DESTDIR=$DESTDIR itlocaledir=/usr/share/locale
+
+	popd
+	rm -rf $PKGNAME-$PKGVERSION
+}