view xfce/xfwm4/xfwm4.sh @ 917:f183d1d76fa7

audio/fluidsynth: initial import, closes #2214
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 20:48:21 +0200
parents a133976e0783
children ddab65a5b3f5
line wrap: on
line source

#!/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.14.0
PKGREVISION=1
PKGLICENSE="GPLv2"
PKGSUMMARY="Xfce window manager"
PKGDOWNLOAD="http://archive.xfce.org/xfce/${PKGVERSION%.*}/src/$PKGNAME-$PKGVERSION.tar.bz2"
PKGDEPENDS="dbus
            libwnck
            gtk
            libdrm
            libepoxy
            libsm
            libx11
            libxcomposite
            libxext
            libxi
            libxinerama
            libxrandr
            libxrender
            libxfce4ui
            libxfce4util
            xfconf"
PKGOPTIONS="NLS STARTUP"

: ${CHOST:=$(uname -m)-linux-musl}
: ${CBUILD:=$(uname -m)-linux-musl}
: ${CC:=clang}
: ${CFLAGS:=-O2}
: ${LDFLAGS:=}
: ${LIBS:=}
: ${NLS:=yes}
: ${STARTUP:=yes}

if [ "$NLS" = "yes" ]; then
	PKGDEPENDS="gettext $PKGDEPENDS"
	with_nls="--enable-nls"
else
	with_nls="--disable-nls"
fi

if [ "$STARTUP" = "yes" ]; then
	PKGDEPENDS="startup-notification $PKGDEPENDS"
	with_startup="--enable-startup-notification"
else
	with_startup="--disable-startup-notification"
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 \
		$with_startup
	make
	make install DESTDIR=$DESTDIR

	cd ..
	rm -rf $PKGNAME-$PKGVERSION
}