PKGBUILDs/community/scribus/PKGBUILD

58 lines
1.7 KiB
Bash
Raw Normal View History

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
2016-01-13 13:18:29 +00:00
pkgver=1.4.6
2015-12-10 04:58:15 +00:00
pkgrel=4
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')
2016-01-13 13:18:29 +00:00
validpgpkeys=('5086B8D68E70FDDF4C40045AEF7B95E7F60166DA')
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.asc}
2014-04-08 00:54:34 +00:00
'arm.patch')
2016-01-13 13:18:29 +00:00
sha1sums=('f04a2eecfb531af4beb99645f85165be161b00a3'
'SKIP'
2015-01-31 08:04:32 +00:00
'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 \
-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-i scribus/plugins/scriptplugin/{samples,scripts}/*
2015-10-07 23:59:27 +00:00
install -d build
2013-07-13 14:46:18 +00:00
}
2013-06-06 21:07:22 +00:00
2013-07-13 14:46:18 +00:00
build() {
2015-10-07 23:59:27 +00:00
cd "${srcdir}/${pkgname}-${pkgver}/build"
cmake .. \
2013-07-13 14:46:18 +00:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DLIB_SUFFIX=""
2013-06-06 21:07:22 +00:00
make
}
package() {
2015-10-07 23:59:27 +00:00
cd "${srcdir}/${pkgname}-${pkgver}/build"
2013-06-06 21:07:22 +00:00
make DESTDIR="${pkgdir}" install
2015-10-07 23:59:27 +00:00
install -Dm644 ../scribus.desktop "${pkgdir}/usr/share/applications/scribus.desktop"
2015-10-09 12:12:51 +00:00
install -Dm644 ../resources/icons/AppIcon.png "${pkgdir}/usr/share/icons/hicolor/32x32/apps/scribus.png"
2013-06-06 21:07:22 +00:00
}