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

27 lines
811 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>"
2023-10-06 00:26:32 +01:00
homepage="https://hectabit.org/centrifuge/HectaBit/dconf-theme-switcher"
2023-08-05 21:19:04 +01:00
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
2023-10-06 00:26:32 +01:00
git clone https://hectabit.org/centrifuge/HectaBit/dconf-theme-switcher.git
cd dconf-theme-switcher
2023-08-05 21:19:04 +01:00
make
}
do_install() {
echo "Installing..."
2023-10-06 00:26:32 +01:00
vbin ${XBPS_BUILDDIR}/dconf-theme-switcher/themeswitcher
2023-08-05 21:19:04 +01:00
mkdir -p ${DESTDIR}/usr/share/applications
2023-10-06 00:26:32 +01:00
cp ${XBPS_BUILDDIR}/dconf-theme-switcher/evolution-theme-switcher.desktop ${DESTDIR}/usr/share/applications/
2023-08-05 21:19:04 +01:00
}