Skip to content

Commit

Permalink
chore(packaging: arch): prepare PKGBUILD for archdroid icons plugin (…
Browse files Browse the repository at this point in the history
…re: #129)
  • Loading branch information
actionless committed Mar 17, 2020
1 parent 1415001 commit 2c50921
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 1 deletion.
1 change: 1 addition & 0 deletions packaging/arch/PKGBUILD_gui
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ makedepends=(
)
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-plugin-base16: Import and export from Base16 project format'
Expand Down
64 changes: 64 additions & 0 deletions packaging/arch/PKGBUILD_icons_archdroid
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Maintainer: Yauhen Kirylau <actionless DOT loveless PLUS aur AT gmail MF com>
# Upstream URL: https://github.com/themix-project/archdroid-icon-theme

_pkgname=themix-icons-archdroid
_reponame=archdroid-icon-theme
pkgname="${_pkgname}-git"
pkgver=1.0.2.r1.g775b8c2c0
pkgrel=1
pkgdesc="Archdroid icons plugin for Themix GUI designer"
arch=('x86_64' 'i686')
url="https://github.com/themix-project/${_reponame}"
license=('GPL3')
source=(
"git+https://github.com/themix-project/oomox.git#branch=master"
"${_reponame}::git+https://github.com/themix-project/${_reponame}.git#branch=master"
)
md5sums=('SKIP'
'SKIP')
depends=(
'sed'
)
makedepends=(
'git'
'python'
)
optdepends=(
'themix-gui: GUI'
'breeze-icons: fallback icons'
'gnome-icon-theme: fallback icons'
'gnome-icon-theme-symbolic: fallback icons'
'oxygen-icons: fallback icons'
)
options=(
'!strip'
)
provides=($_pkgname)
conflicts=($_pkgname)

pkgver() {
cd "${srcdir}/${_reponame}"
git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

package() {
_oomox_dir=/opt/oomox

_oomox_dir=/opt/oomox
_plugin_name=icons_archdroid
_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
6 changes: 5 additions & 1 deletion packaging/arch/PKGBUILD_icons_gnome_colors
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ makedepends=(
)
optdepends=(
'themix-gui: GUI'
'breeze-icons: more fallback icons'
'gnome-icon-theme: fallback icons'
'gnome-icon-theme-symbolic: fallback icons'
'adwaita-icon-theme: fallback icons'
'breeze-icons: fallback icons'
'oxygen-icons: fallback icons'
)
options=(
'!strip'
Expand Down
2 changes: 2 additions & 0 deletions packaging/arch/PKGBUILD → packaging/arch/PKGBUILD_old
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,5 @@ package() {
make DESTDIR="${pkgdir}" APPDIR="${_oomox_dir}" PREFIX="/usr" install
python -O -m compileall ${pkgdir}${_oomox_gui_dir} -d ${_oomox_gui_dir}
}

# vim: ft=PKGBUILD

0 comments on commit 2c50921

Please sign in to comment.