diff --git a/packaging/arch/PKGBUILD_gui b/packaging/arch/PKGBUILD_gui index 3b31b5adb..813620e3e 100644 --- a/packaging/arch/PKGBUILD_gui +++ b/packaging/arch/PKGBUILD_gui @@ -22,14 +22,20 @@ makedepends=( 'git' ) optdepends=( - 'themix-export-spotify: Apply theme to Spotify' - 'themix-icons-archdroid: Icons Style plugin' - 'themix-icons-gnome-colors: Icons Style plugin' 'themix-import-images: Import palettes from images' + + 'themix-export-spotify: Apply theme to Spotify' + 'themix-plugin-base16: Import and export from Base16 project format' + 'themix-theme-arc: Theme Style plugin' 'themix-theme-materia: Theme Style plugin' 'themix-theme-oomox: Theme Style plugin' + + 'themix-icons-archdroid: Icons Style plugin' + 'themix-icons-gnome-colors: Icons Style plugin' + 'themix-icons-papirus: Icons Style plugin' + 'xorg-xrdb: for the `xresources` theme' ) provides=('themix-gui') diff --git a/packaging/arch/PKGBUILD_icons_archdroid b/packaging/arch/PKGBUILD_icons_archdroid index 3cc51421c..1878789d3 100644 --- a/packaging/arch/PKGBUILD_icons_archdroid +++ b/packaging/arch/PKGBUILD_icons_archdroid @@ -18,6 +18,7 @@ md5sums=('SKIP' 'SKIP') depends=( 'sed' + 'findutils' ) makedepends=( 'git' @@ -26,8 +27,8 @@ makedepends=( optdepends=( 'themix-gui: GUI' 'breeze-icons: fallback icons' - 'gnome-icon-theme: fallback icons' - 'gnome-icon-theme-symbolic: fallback icons' + 'gnome-icon-theme: fallback icons' + 'gnome-icon-theme-symbolic: fallback icons' 'oxygen-icons: fallback icons' ) options=( @@ -42,8 +43,6 @@ pkgver() { } package() { - _oomox_dir=/opt/oomox - _oomox_dir=/opt/oomox _plugin_name=icons_archdroid _plugin_subpath="/${_reponame}" diff --git a/packaging/arch/PKGBUILD_icons_gnome_colors b/packaging/arch/PKGBUILD_icons_gnome_colors index b65347e65..79de554a5 100644 --- a/packaging/arch/PKGBUILD_icons_gnome_colors +++ b/packaging/arch/PKGBUILD_icons_gnome_colors @@ -48,8 +48,6 @@ pkgver() { } package() { - _oomox_dir=/opt/oomox - _oomox_dir=/opt/oomox _plugin_name=icons_gnomecolors _plugin_subpath="/${_reponame}" diff --git a/packaging/arch/PKGBUILD_icons_papirus b/packaging/arch/PKGBUILD_icons_papirus new file mode 100644 index 000000000..06138e923 --- /dev/null +++ b/packaging/arch/PKGBUILD_icons_papirus @@ -0,0 +1,62 @@ +# Maintainer: Yauhen Kirylau +# Upstream URL: https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/ + +_pkgname=themix-icons-papirus +_reponame=papirus-icon-theme +pkgname="${_pkgname}-git" +pkgver=20200301.r25.g28c50b9640 +pkgrel=1 +pkgdesc="Papirus icons plugin for Themix GUI designer" +arch=('x86_64' 'i686') +url="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/" +license=('GPL3') +source=( + "git+https://github.com/themix-project/oomox.git#branch=master" + "${_reponame}::git+https://github.com/PapirusDevelopmentTeam/papirus-icon-theme.git#branch=master" +) +md5sums=('SKIP' + 'SKIP') +depends=( + 'sed' + 'findutils' +) +makedepends=( + 'git' + 'python' +) +optdepends=( + 'themix-gui: GUI' + 'breeze-icons: fallback icons' + 'gnome-icon-theme: fallback icons' + 'gnome-icon-theme-symbolic: fallback icons' +) +options=( + '!strip' +) +provides=($_pkgname) +conflicts=($_pkgname) + +pkgver() { + cd "${srcdir}/${_reponame}" + git describe --tags --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +} + +package() { + _oomox_dir=/opt/oomox + _plugin_name=icons_papirus + _plugin_subpath="/${_reponame}" + + pkg_tmp_dir="${pkgdir}/_tmp" + rm -fr "$pkg_tmp_dir" + cp -r "${srcdir}/oomox" "$pkg_tmp_dir" + rm -rf "${pkg_tmp_dir}/plugins/${_plugin_name}${_plugin_subpath}" + cp -r "${srcdir}/${_reponame}" "${pkg_tmp_dir}/plugins/${_plugin_name}${_plugin_subpath}" + + cd "$pkg_tmp_dir" + make DESTDIR="${pkgdir}" APPDIR="${_oomox_dir}" PREFIX="/usr" "install_${_plugin_name}" + rm -fr "$pkg_tmp_dir" + + python -O -m compileall "${pkgdir}${_oomox_dir}/plugins/${_plugin_name}" -d "${_oomox_dir}/plugins/${_plugin_name}" +} + +# vim: ft=PKGBUILD