29 lines
847 B
Bash
29 lines
847 B
Bash
|
# Template build file for 'libmypaint'
|
||
|
pkgname=libmypaint
|
||
|
version=1.3.0
|
||
|
revision=1
|
||
|
build_style=gnu-configure
|
||
|
configure_args="--disable-gegl"
|
||
|
hostmakedepends="intltool pkg-config"
|
||
|
makedepends="json-c-devel gobject-introspection glib-devel json-glib-devel"
|
||
|
short_desc="MyPaint brush engine library"
|
||
|
maintainer="Kartik S <kartik.ynwa@gmail.com>"
|
||
|
license="ISC"
|
||
|
homepage="https://github.com/mypaint/libmypaint"
|
||
|
distfiles="https://github.com/mypaint/libmypaint/releases/download/v${version}/libmypaint-${version}.tar.xz"
|
||
|
checksum=6a07d9d57fea60f68d218a953ce91b168975a003db24de6ac01ad69dcc94a671
|
||
|
|
||
|
libmypaint-devel_package() {
|
||
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
||
|
short_desc+=" - development files"
|
||
|
pkg_install() {
|
||
|
vmove usr/include
|
||
|
vmove usr/lib/pkgconfig
|
||
|
vmove "usr/lib/*.so"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
post_install() {
|
||
|
vlicense COPYING
|
||
|
}
|