blob: fcba9fdd74e3042ef92f259b6760e35ae2358b86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# 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.15.1
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
'oomox'
'oomox-git'
)
pkgver() {
cd "${srcdir}/oomox"
git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
_oomox_dir=/opt/oomox
_plugin_name=import_from_image
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
|