2013-07-13 14:46:18 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
|
|
|
|
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
|
2013-06-06 21:07:22 +00:00
|
|
|
# Contributor: Ronald van Haren <ronald.archlinux.org>
|
|
|
|
# Contributor: tobias <tobias@archlinux.org>
|
|
|
|
# Contributor: Ben <ben@benmazer.net>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - patch for qreal on ARM
|
|
|
|
|
|
|
|
pkgname=scribus
|
2015-01-31 08:04:32 +00:00
|
|
|
pkgver=1.4.5
|
|
|
|
pkgrel=1
|
2013-07-13 14:46:18 +00:00
|
|
|
pkgdesc='Desktop publishing software'
|
|
|
|
url="http://www.scribus.net/"
|
2013-06-06 21:07:22 +00:00
|
|
|
license=('GPL')
|
2013-07-13 14:46:18 +00:00
|
|
|
arch=('i686' 'x86_64')
|
2013-06-06 21:07:22 +00:00
|
|
|
makedepends=('cmake' 'boost' 'mesa')
|
2013-07-13 14:46:18 +00:00
|
|
|
depends=('qt4' 'cairo' 'lcms2' 'libcups' 'libxml2' 'hyphen'
|
2013-07-30 15:47:43 +00:00
|
|
|
'ghostscript' 'python2' 'podofo' 'boost-libs'
|
2013-07-13 14:46:18 +00:00
|
|
|
'desktop-file-utils' 'shared-mime-info')
|
|
|
|
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz"
|
2014-04-08 00:54:34 +00:00
|
|
|
'arm.patch')
|
2015-01-31 08:04:32 +00:00
|
|
|
sha1sums=('70685aeb66d1f8f4984125c56f8f6e059af267c3'
|
|
|
|
'3a7b787f1b998d6af05d2f920dcecdc0b215cc26')
|
2013-06-06 21:07:22 +00:00
|
|
|
|
2013-07-13 14:46:18 +00:00
|
|
|
options=('!libtool')
|
|
|
|
install=install
|
|
|
|
|
|
|
|
prepare() {
|
2013-08-19 14:45:52 +00:00
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2014-04-08 00:54:34 +00:00
|
|
|
patch -p1 -i "${srcdir}"/arm.patch
|
2013-07-13 14:46:18 +00:00
|
|
|
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
|
|
|
|
}
|
2013-06-06 21:07:22 +00:00
|
|
|
|
2013-07-13 14:46:18 +00:00
|
|
|
build() {
|
2013-08-19 14:45:52 +00:00
|
|
|
cd "${srcdir}/build"
|
2013-07-13 14:46:18 +00:00
|
|
|
cmake "../${pkgname}-${pkgver}" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
|
|
-DLIB_SUFFIX=""
|
2013-06-06 21:07:22 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2013-08-19 14:45:52 +00:00
|
|
|
cd "${srcdir}/build"
|
2013-06-06 21:07:22 +00:00
|
|
|
make DESTDIR="${pkgdir}" install
|
2013-07-13 14:46:18 +00:00
|
|
|
install -Dm644 "../${pkgname}-${pkgver}/scribus.desktop" "${pkgdir}/usr/share/applications/scribus.desktop"
|
2013-06-06 21:07:22 +00:00
|
|
|
}
|