Skip to content

Commit

Permalink
chore(packaging: arch): prepare PKGBUILD for suru++-aspromauros icons…
Browse files Browse the repository at this point in the history
… plugin (re: #129)
  • Loading branch information
actionless committed Mar 17, 2020
1 parent 5eb0ae3 commit bd096a7
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
1 change: 1 addition & 0 deletions packaging/arch/PKGBUILD_gui
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ optdepends=(
'themix-icons-gnome-colors: Icons Style plugin'
'themix-icons-papirus: Icons Style plugin'
'themix-icons-suru-plus: Icons Style plugin'
'themix-icons-suru-plus-aspromauros: Icons Style plugin'

'xorg-xrdb: for the `xresources` theme'
)
Expand Down
59 changes: 59 additions & 0 deletions packaging/arch/PKGBUILD_icons_suruplus_aspromauros
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Maintainer: Yauhen Kirylau <actionless DOT loveless PLUS aur AT gmail MF com>
# Upstream URL: https://github.com/gusbemacbe/suru-plus-aspromauros/

_pkgname=themix-icons-suru-plus-aspromauros
_reponame=suru-plus-aspromauros
pkgname="${_pkgname}-git"
pkgver=v3.0.r0.gd43a8ec4
pkgrel=1
pkgdesc="Suru++ icons plugin for Themix GUI designer"
arch=('x86_64' 'i686')
url="https://github.com/gusbemacbe/suru-plus-aspromauros/"
license=('GPL3')
source=(
"git+https://github.com/themix-project/oomox.git#branch=master"
"${_reponame}::git+https://github.com/gusbemacbe/suru-plus-aspromauros.git#branch=master"
)
md5sums=('SKIP'
'SKIP')
depends=(
'sed'
'findutils'
)
makedepends=(
'git'
'python'
)
optdepends=(
'themix-gui: GUI'
)
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_suruplus_aspromauros
_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

0 comments on commit bd096a7

Please sign in to comment.