summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2020-02-01 17:53:28 -0500
committerbill-auger <mr.j.spam.me@gmail.com>2020-02-02 17:07:31 -0500
commit2a6a603278df5c3d3f02e62574f7fc5c87ddc830 (patch)
tree9dad52a67a94d148003c61cc8bb82dcb32cc2afb
parentf908c2c6fb5fd56bce16e96829ee95e7a8167dc7 (diff)
[lightspark]: rebuild against latest boost
-rw-r--r--pcr/lightspark/PKGBUILD33
1 files changed, 26 insertions, 7 deletions
diff --git a/pcr/lightspark/PKGBUILD b/pcr/lightspark/PKGBUILD
index 0f4f52cd1..abadafaa3 100644
--- a/pcr/lightspark/PKGBUILD
+++ b/pcr/lightspark/PKGBUILD
@@ -10,7 +10,7 @@
pkgname=lightspark
pkgver=0.8.2
-pkgrel=1
+pkgrel=2
pkgdesc="An open source flash player implementation"
arch=('armv7h' 'i686' 'x86_64')
url=http://lightspark.github.io/
@@ -21,25 +21,42 @@ depends=('boost-libs' 'cairo' 'curl' 'desktop-file-utils' 'ffmpeg' 'glew' \
optdepends=('gnash-gtk: Gnash fallback support')
makedepends=('cmake' 'nasm' 'boost')
conflicts=('lightspark-git')
-
install=lightspark.install
source=(https://github.com/lightspark/lightspark/archive/${pkgver}.tar.gz)
sha256sums=('05595a3085bf76ea5c9723f128dcadead5ccf38e177c3a456901ccee3265548a')
+# FIXME: FTBS against boost 1.72.0 - see note in prepare()
+source+=(include-boostserialization.patch)
+sha256sums+=('669b021aebb1bd0f4f8f7c029b963c575eaf3cdee1de194144bc8c9b8b61d2e5')
+
-_builddir=${pkgname}-${pkgver}/build
+_version_constraint() # (dep_pkgname)
+{
+ local dep_pkgname=$1
+ local version=$(pacman -S --print-format='%v' ${dep_pkgname} | tail -n 1)
+ version=${version%-*}
+ local version_inc=${version%.*}.$(( ${version##*.} + 1 ))
+
+ echo -n "${dep_pkgname}>=${version}" "${dep_pkgname}<${version_inc}"
+}
prepare()
{
- cd "${srcdir}"/
+ cd "${srcdir}"/${pkgname}-${pkgver}/
+
+ [ -d build ] && rm -rf build/* || mkdir build
- [ -d ${_builddir} ] && rm -rf ${_builddir}/* || mkdir ${_builddir}
+ # FIXME: FTBS against boost 1.72.0 - next upstream release should have this patch applied
+ # https://labs.parabola.nu/issues/2568
+ # https://github.com/lightspark/lightspark/pull/409
+ # i686 still has boost-libs 1.71.0
+ [[ "${CARCH}" != 'i686' ]] && patch -Np1 < "${srcdir}"/include-boostserialization.patch
}
build()
{
- cd "${srcdir}"/${_builddir}/
+ cd "${srcdir}"/${pkgname}-${pkgver}/build
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCOMPILE_PLUGIN=1 \
@@ -51,7 +68,9 @@ build()
package()
{
- cd "${srcdir}"/${_builddir}/
+ depends+=( $(_version_constraint 'boost-libs') )
+
+ cd "${srcdir}"/${pkgname}-${pkgver}/build
make DESTDIR="${pkgdir}/" install