39 lines
1.3 KiB
Bash
39 lines
1.3 KiB
Bash
# Template file for 'opentoonz'
|
|
pkgname=opentoonz
|
|
version=1.5.0
|
|
revision=2
|
|
build_wrksrc="toonz/sources"
|
|
build_style=cmake
|
|
make_cmd=make
|
|
hostmakedepends="qt5-qmake qt5-host-tools pkg-config automake libtool"
|
|
makedepends="qt5-devel qt5-svg-devel qt5-script-devel qt5-tools-devel qt5-multimedia-devel
|
|
superlu-devel glew-devel libjpeg-turbo-devel liblzma-devel liblz4-devel lzo-devel
|
|
libusb-devel SDL2-devel libmypaint-devel boost-devel libfreeglut-devel
|
|
openblas-devel qt5-serialport-devel libopencv4-devel"
|
|
short_desc="Full-featured 2D animation creation software"
|
|
maintainer="bra1nwave <brainwave@openmailbox.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://opentoonz.github.io/e/"
|
|
distfiles="https://github.com/opentoonz/opentoonz/archive/v${version}.tar.gz"
|
|
checksum=fba0f381fb71ffda89e6423b4d461450d4851f93830342e69e36313070af5990
|
|
|
|
export CMAKE_GENERATOR="Unix Makefiles"
|
|
|
|
pre_configure() {
|
|
# Upstream uses their own modified version of tiff
|
|
if [ "$CROSS_BUILD" ]; then
|
|
configure_args="-DTIFF_LIBRARY=${wrksrc}/thirdparty/tiff-4.0.3/libtiff/.libs/libtiff.a
|
|
-DTIFF_INCLUDE_DIR=${wrksrc}/thirdparty/tiff-4.0.3/libtiff"
|
|
_args="--host=${XBPS_TRIPLET}"
|
|
fi
|
|
|
|
cd ${wrksrc}/thirdparty/tiff-4.0.3
|
|
autoreconf -fi
|
|
./configure --with-pic --disable-jbig ${_args}
|
|
make ${makejobs}
|
|
}
|
|
|
|
post_install() {
|
|
vlicense ${wrksrc}/LICENSE.txt
|
|
}
|