changeset 642:5f5772c5f176

xfce/mousepad: initial import, closes #1719
author David Demelier <markand@malikania.fr>
date Fri, 26 Jul 2019 22:09:52 +0200
parents c8c69bbe438a
children 54562ab83360
files xfce/mousepad/mousepad.sh xfce/mousepad/mousepad.sha1
diffstat 2 files changed, 73 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/mousepad/mousepad.sh	Fri Jul 26 22:09:52 2019 +0200
@@ -0,0 +1,72 @@
+#!/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=mousepad
+PKGVERSION=0.4.1
+PKGREVISION=1
+PKGLICENSE="GPLv2"
+PKGSUMMARY="Xfce simple text editor"
+PKGDOWNLOAD="http://archive.xfce.org/src/apps/$PKGNAME/0.4/$PKGNAME-$PKGVERSION.tar.bz2"
+PKGDEPENDS="graphics/gtk lib/glib"
+PKGOPTIONS="DBUS NLS"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${DBUS:=yes}
+: ${NLS:=yes}
+
+if [ "$DBUS" = "yes" ]; then
+	PKGDEPENDS="lib/dbus-glib $PKGDEPENDS"
+	with_dbus="--enable-dbus"
+else
+	with_dbus="--disable-dbus"
+fi
+
+if [ "$NLS" = "yes" ]; then
+	PKGDEPENDS="core/gettext:build $PKGDEPENDS"
+	with_nls="--enable-nls"
+else
+	with_nls="--disable-nls"
+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= \
+		--enable-gtk3 \
+		--localedir=/share/local \
+		$with_dbus
+	make
+	make install localedir=/share/locale DESTDIR=$DESTDIR
+
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/mousepad/mousepad.sha1	Fri Jul 26 22:09:52 2019 +0200
@@ -0,0 +1,1 @@
+da034ac3711c273e71e0c2b194c12d72a9ca087a  mousepad-0.4.1.tar.bz2