# HG changeset patch # User David Demelier # Date 1565539686 -7200 # Node ID 5f73d478ab71804f9398af4a6fcc271cdc37f1ac # Parent cdac7b62a77af948bc79bfc1590da68d36374bbd xfce/thunar: initial import, closes #1488 diff -r cdac7b62a77a -r 5f73d478ab71 xfce/thunar/thunar.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xfce/thunar/thunar.sh Sun Aug 11 18:08:06 2019 +0200 @@ -0,0 +1,125 @@ +#!/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=thunar +PKGVERSION=1.6.6 +PKGREVISION=1 +PKGLICENSE="GPLv2 LGPLv20" +PKGSUMMARY="Xfce file manager" +PKGDOWNLOAD="http://archive.xfce.org/xfce/4.12/src/Thunar-$PKGVERSION.tar.bz2" +PKGDEPENDS="graphics/gdk-pixbuf + graphics/gtk2 + lib/glib + x11/libsm + x11/libx11 + xfce/exo + xfce/libxfce4ui + xfce/libxfce4util + xfce/xfconf" +PKGOPTIONS="DBUS EXIF NLS NOTIFICATIONS PCRE STARTUP UDEV" + +: ${CHOST:=$(uname -m)-linux-musl} +: ${CBUILD:=$(uname -m)-linux-musl} +: ${CC:=clang} +: ${CFLAGS:=-O2} +: ${LDFLAGS:=} +: ${LIBS:=} +: ${DBUS:=yes} +: ${EXIF:=yes} +: ${NLS:=yes} +: ${NOTIFICATIONS:=yes} +: ${PCRE:=yes} +: ${STARTUP:=yes} +: ${UDEV:=yes} + +if [ "$DBUS" = "yes" ]; then + PKGDEPENDS="lib/dbus-glib $PKGDEPENDS" + with_dbus="--enable-dbus" +else + with_dbus="--disable-dbus" +fi + +if [ "$EXIF" = "yes" ]; then + PKGDEPENDS="graphics/libexif $PKGDEPENDS" + with_exif="--enable-exif" +else + with_exif="--disable-exif" +fi + +if [ "$NLS" = "yes" ]; then + PKGDEPENDS="core/gettext:build $PKGDEPENDS" + with_nls="--enable-nls" +else + with_nls="--disable-nls" +fi + +if [ "$NOTIFICATIONS" = "yes" ]; then + PKGDEPENDS="desktop/libnotify $PKGDEPENDS" + with_notifications="--enable-libnotify" +else + with_notifications="--disable-libnotify" +fi + +if [ "$PCRE" = "yes" ]; then + PKGDEPENDS="lib/pcre $PKGDEPENDS" + with_pcre="--enable-pcre" +else + with_pcre="--disable-pcre" +fi + +if [ "$STARTUP" = "yes" ]; then + PKGDEPENDS="desktop/startup-notification $PKGDEPENDS" + with_startups="--enable-startup-notification" +else + with_startups="--disable-startup-notification" +fi + +if [ "$UDEV" = "yes" ]; then + PKGDEPENDS="lib/libgudev $PKGDEPENDS" + with_udev="--enable-gudev" +else + with_udev="--disable-gudev" +fi + +build() +{ + rm -rf Thunar-$PKGVERSION + tar xvf Thunar-$PKGVERSION.tar.bz2 + cd Thunar-$PKGVERSION + + CC="$CC" \ + CFLAGS="$CFLAGS" \ + LDFLAGS="$LDFLAGS" \ + LIBS="$LIBS" \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix= \ + --with-locales-dir=/share/locale \ + $with_dbus \ + $with_exif \ + $with_nls \ + $with_notifications \ + $with_pcre \ + $with_startup \ + $with_udev + make + make install DESTDIR=$DESTDIR + + cd .. + rm -rf Thunar-$PKGVERSION +} diff -r cdac7b62a77a -r 5f73d478ab71 xfce/thunar/thunar.sha1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xfce/thunar/thunar.sha1 Sun Aug 11 18:08:06 2019 +0200 @@ -0,0 +1,1 @@ +9d7ba73376efa1ecb580b227cfc4fd29fe4b8ecb Thunar-1.6.6.tar.bz2