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

27 lines
807 B
Bash
Raw Normal View History

2023-08-05 21:19:04 +01:00
#!/bin/sh
pkgname=evolution-theme-switcher
version=1.0
2024-01-27 13:44:24 +00:00
revision=7
2023-08-05 21:19:04 +01:00
short_desc="Just a theme switcher for evolution-desktop"
maintainer="Tracker-Friendly <jliwin98@danwin1210.de>"
2023-10-29 15:34:13 +00:00
homepage="https://centrifuge.hectabit.org/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-29 15:34:13 +00:00
git clone https://centrifuge.hectabit.org/HectaBit/dconf-theme-switcher
2023-10-06 00:26:32 +01:00
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
}