Skip to content

Commit

Permalink
chore(packaging: arch): prepare PKGBUILD for import images plugin (re:
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Mar 17, 2020
1 parent 82e02f1 commit c9fc525
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions packaging/arch/PKGBUILD_import_image
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Maintainer: Yauhen Kirylau <actionless DOT loveless PLUS aur AT gmail MF com>
# Upstream URL: https://github.com/themix-project/oomox

_pkgname=themix-import-images
pkgname="${_pkgname}-git"
pkgver=1.12.6.r11.gf461833e
pkgrel=1
pkgdesc="Import plugin for Themix GUI designer to get color palettes from the images"
arch=('x86_64' 'i686')
url="https://github.com/themix-project/oomox"
license=('GPL3')
source=(
"git+https://github.com/themix-project/oomox.git#branch=master"
)
md5sums=('SKIP')
depends=(
'themix-gui'
'python-pillow'
)
makedepends=(
'git'
)
optdepends=(
'colorz: additional image analyzer'
'python-colorthief: additional image analyzer'
'python-haishoku: additional image analyzer'
)
provides=($_pkgname)
conflicts=($_pkgname)

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

package() {
_oomox_dir=/opt/oomox
_plugin_name=import_pil

cd "${srcdir}/oomox"
make DESTDIR="${pkgdir}" APPDIR="${_oomox_dir}" PREFIX="/usr" install_import_images
python -O -m compileall "${pkgdir}${_oomox_dir}/plugins/${_plugin_name}" -d "${_oomox_dir}/plugins/${_plugin_name}"
}

# vim: ft=PKGBUILD

0 comments on commit c9fc525

Please sign in to comment.