changeset 789:0ea4cabfa7e4

xfce/xfce4-appfinder: initial import, closes #1496
author David Demelier <markand@malikania.fr>
date Mon, 12 Aug 2019 16:20:54 +0200
parents 6a808b0ef460
children bb33036bcd39
files xfce/xfce4-appfinder/xfce4-appfinder.sh xfce/xfce4-appfinder/xfce4-appfinder.sha1
diffstat 2 files changed, 70 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/xfce4-appfinder/xfce4-appfinder.sh	Mon Aug 12 16:20:54 2019 +0200
@@ -0,0 +1,69 @@
+#!/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-appfinder
+PKGVERSION=4.14.0
+PKGREVISION=1
+PKGLICENSE="GPLv2"
+PKGSUMMARY="Xfce applications finder"
+PKGDOWNLOAD="http://archive.xfce.org/xfce/${PKGVERSION%.*}/src/$PKGNAME-$PKGVERSION.tar.bz2"
+PKGDEPENDS="graphics/gtk
+            lib/glib
+            xfce/garcon
+            xfce/libxfce4ui
+            xfce/libxfce4util
+            xfce/xfconf"
+PKGOPTIONS="NLS"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${NLS:=yes}
+
+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= \
+		--localedir=/share/locale \
+		--with-locales-dir=/share/locale \
+		$with_nls
+	make
+	make install DESTDIR=$DESTDIR
+
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/xfce4-appfinder/xfce4-appfinder.sha1	Mon Aug 12 16:20:54 2019 +0200
@@ -0,0 +1,1 @@
+d0ceed5c05b6e411d1538d9727c818a52f441cf2  xfce4-appfinder-4.14.0.tar.bz2