37 lines
922 B
Plaintext
37 lines
922 B
Plaintext
|
# Template file for 'gtk-theme-config'
|
||
|
pkgname=gtk-theme-config
|
||
|
version="$(date -u +%Y%m%d)"
|
||
|
revision=1
|
||
|
homepage="https://github.com/satya164/gtk-theme-config"
|
||
|
makedepends="git pkg-config glib-devel vala-devel gtk+3-devel"
|
||
|
short_desc="GTK Theme Preferences"
|
||
|
maintainer="davehome <davehome@redthumb.info.tm>"
|
||
|
license="GPL-3"
|
||
|
long_desc="
|
||
|
Customize GTK2/GTK3 Theme Colors using GTK Theme Preferences.
|
||
|
|
||
|
Works with any GTK2 and GTK3 theme and lets you customize the following:
|
||
|
- selected background color
|
||
|
- Xfce panel, Gnome panel and Unity panel: background and text color
|
||
|
- menu background and font color"
|
||
|
|
||
|
nofetch=yes
|
||
|
noextract=yes
|
||
|
|
||
|
do_fetch()
|
||
|
{
|
||
|
local url="git://github.com/satya164/gtk-theme-config.git"
|
||
|
msg_normal " Fetching source from $url ...\n"
|
||
|
git clone ${url} ${pkgname}-${version}
|
||
|
}
|
||
|
|
||
|
do_build()
|
||
|
{
|
||
|
make ${makejobs} PREFIX=/usr
|
||
|
}
|
||
|
|
||
|
do_install()
|
||
|
{
|
||
|
make ${makejobs} PREFIX=/usr DESTDIR=${DESTDIR} install
|
||
|
}
|