diff --git a/srcpkgs/gtk-theme-config/gtk-theme-config.rshlibs b/srcpkgs/gtk-theme-config/gtk-theme-config.rshlibs new file mode 100644 index 00000000000..f306bd2b55f --- /dev/null +++ b/srcpkgs/gtk-theme-config/gtk-theme-config.rshlibs @@ -0,0 +1,15 @@ +libgtk-3.so.0 +libgio-2.0.so.0 +libatk-1.0.so.0 +libgdk-3.so.0 +libgdk_pixbuf-2.0.so.0 +libcairo-gobject.so.2 +libpangocairo-1.0.so.0 +libpango-1.0.so.0 +libcairo.so.2 +libgobject-2.0.so.0 +libglib-2.0.so.0 +libX11.so.6 +libm.so.6 +libpthread.so.0 +libc.so.6 diff --git a/srcpkgs/gtk-theme-config/template b/srcpkgs/gtk-theme-config/template new file mode 100644 index 00000000000..deade8e29b5 --- /dev/null +++ b/srcpkgs/gtk-theme-config/template @@ -0,0 +1,36 @@ +# 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 " +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 +}