view wm/sway/sway.sh @ 1216:6710613b88b9

misc: remove build function
author David Demelier <markand@malikania.fr>
date Wed, 29 Sep 2021 13:49:32 +0200
parents 6f99a368f617
children 4ccc42bf0284
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=sway
PKGVERSION=1.2
PKGREVISION=1
PKGLICENSE="MIT"
PKGSUMMARY="tiling Wayland compositor"
PKGWWW="https://swaywm.org"
PKGDOWNLOAD="https://github.com/swaywm/sway/releases/download/$PKGVERSION/$PKGNAME-$PKGVERSION.tar.gz"
PKGDEPENDS="cairo
            glib
            json-c
            libevdev
            libinput
            libpcre
            libxkbcommon
            meson:build
            pango
            pixman
            scdoc:build
            wayland
            wayland-protocols:build
            wlroots"
PKGOPTIONS="GDK_PIXBUF TRAY X"

: ${CC:=clang}
: ${CFLAGS:=-O2}
: ${LDFLAGS:=}
: ${GDK_PIXBUF:=yes}
: ${TRAY:=yes}
: ${X:=yes}

if [ "$GDK_PIXBUF" = "yes" ]; then
	PKGDEPENDS="gdk-pixbuf $PKGDEPENDS"
	with_gdk_pixbuf="-D gdk-pixbuf=enabled"
else
	with_gdk_pixbuf="-D gdk-pixbuf=disabled"
fi

if [ "$TRAY" = "yes" ]; then
	with_tray="-D tray=enabled"
else
	with_tray="-D tray=disabled"
fi

if [ "$X" = "yes" ]; then
	with_x="-D xwayland=enabled"
else
	with_x="-D xwayland=disabled"
fi

rm -rf $PKGNAME-$PKGVERSION
tar xvf $PKGNAME-$PKGVERSION.tar.gz
cd $PKGNAME-$PKGVERSION

CC="$CC" \
CFLAGS="$CFLAGS" \
LDFLAGS="$LDFLAGS" \
meson . build \
	--prefix / \
	--buildtype release \
	$with_gdk_pixbuf \
	$with_tray \
	$with_x
ninja -C build
DESTDIR=$DESTDIR ninja -C build install

cd ..
rm -rf $PKGNAME-$PKGVERSION