evolution-packages/srcpkgs/evolution-theme-switcher/template

27 lines
815 B
Bash
Raw Normal View History

2023-08-05 21:19:04 +01:00
#!/bin/sh
pkgname=evolution-theme-switcher
version=1.0
revision=5
short_desc="Just a theme switcher for evolution-desktop"
maintainer="Tracker-Friendly <jliwin98@danwin1210.de>"
homepage="https://codeberg.org/EvolutionOS/Evolution-theme-switcher"
license="GPL-3.0"
makedepends="make gcc git pkg-config gtk+3-devel dconf"
depends="gtk+3 dconf"
do_build() {
echo "Building..."
cd ${XBPS_BUILDDIR}
rm -rf gtkgreet
git clone https://codeberg.org/EvolutionOS/evolution-theme-switcher.git
cd evolution-theme-switcher
make
}
do_install() {
echo "Installing..."
vbin ${XBPS_BUILDDIR}/evolution-theme-switcher/themeswitcher
mkdir -p ${DESTDIR}/usr/share/applications
cp ${XBPS_BUILDDIR}/evolution-theme-switcher/evolution-theme-switcher.desktop ${DESTDIR}/usr/share/applications/
}