# $Id$ # Maintainer: Gaetan Bisson # Contributor: Daniel J Griffiths # Contributor: Ronald van Haren # Contributor: tobias # Contributor: Ben # ALARM: Kevin Mihelich # - patch for qreal on ARM pkgname=scribus pkgver=1.4.2 pkgrel=3 pkgdesc='Desktop publishing software' url="http://www.scribus.net/" license=('GPL') arch=('i686' 'x86_64') makedepends=('cmake' 'boost' 'mesa') depends=('qt4' 'cairo' 'lcms2' 'libcups' 'libxml2' 'hyphen' 'ghostscript' 'python2' 'aspell' 'boost-libs' 'desktop-file-utils' 'shared-mime-info') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz" arm.patch) sha1sums=('6e67e98fa315a2890d9cbb12eed49ecebb7f11cb' 'efb1fbf23b29527397f5fd7fe999bbeef50e5129') options=('!libtool') install=install prepare() { cd "${srcdir}/${pkgname}-${pkgver}" patch -p1 -i ../arm.patch sed 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' -i scribus.desktop sed \ -e 's|#!/usr/bin/python|#!/usr/bin/python2|' \ -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ -i scribus/plugins/scriptplugin/{samples,scripts}/* install -d ../build } build() { cd "${srcdir}/build" cmake "../${pkgname}-${pkgver}" \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_SKIP_RPATH=ON \ -DLIB_SUFFIX="" make } package() { cd "${srcdir}/build" make DESTDIR="${pkgdir}" install install -Dm644 "../${pkgname}-${pkgver}/scribus.desktop" "${pkgdir}/usr/share/applications/scribus.desktop" }