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
|
2013-07-30 15:47:43 +00:00
|
|
|
pkgver=1.4.3
|
|
|
|
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"
|
2013-06-06 21:07:22 +00:00
|
|
|
arm.patch)
|
2013-07-30 15:47:43 +00:00
|
|
|
sha1sums=('23d85fcfe0a61ff88cc003639efdbb38d43feb7f'
|
2013-06-06 21:07:22 +00:00
|
|
|
'efb1fbf23b29527397f5fd7fe999bbeef50e5129')
|
|
|
|
|
2013-07-13 14:46:18 +00:00
|
|
|
options=('!libtool')
|
|
|
|
install=install
|
|
|
|
|
|
|
|
prepare() {
|
2013-07-30 15:47:43 +00:00
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver}"
|
2013-07-30 16:05:58 +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-07-30 15:47:43 +00:00
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}/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-07-30 15:47:43 +00:00
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}/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
|
|
|
}
|