# HG changeset patch # User David Demelier # Date 1565619654 -7200 # Node ID 0ea4cabfa7e4eda330ec298875f2acb16400b564 # Parent 6a808b0ef4606d794c0c5ff2696d9ac2a08cfa4d xfce/xfce4-appfinder: initial import, closes #1496 diff -r 6a808b0ef460 -r 0ea4cabfa7e4 xfce/xfce4-appfinder/xfce4-appfinder.sh --- /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 +# +# 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 +} diff -r 6a808b0ef460 -r 0ea4cabfa7e4 xfce/xfce4-appfinder/xfce4-appfinder.sha1 --- /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