24 lines
651 B
Bash
24 lines
651 B
Bash
# Template file for 'gtk-theme-config'
|
|
pkgname=gtk-theme-config
|
|
version=20140605
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
hostmakedepends="pkg-config git"
|
|
makedepends="glib-devel vala-devel gtk+3-devel hicolor-icon-theme desktop-file-utils"
|
|
depends="hicolor-icon-theme desktop-file-utils"
|
|
short_desc="Utility to set GTK Theme Preferences"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-3"
|
|
homepage="https://github.com/satya164/gtk-theme-config"
|
|
|
|
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() {
|
|
unset CC CFLAGS
|
|
make
|
|
}
|