summaryrefslogtreecommitdiff
path: root/community/scribus
diff options
context:
space:
mode:
Diffstat (limited to 'community/scribus')
-rw-r--r--community/scribus/PKGBUILD49
-rw-r--r--community/scribus/install11
2 files changed, 60 insertions, 0 deletions
diff --git a/community/scribus/PKGBUILD b/community/scribus/PKGBUILD
new file mode 100644
index 000000000..df6e5ffeb
--- /dev/null
+++ b/community/scribus/PKGBUILD
@@ -0,0 +1,49 @@
+# $Id: PKGBUILD 94794 2013-07-30 14:34:31Z bisson $
+# Maintainer: Gaetan Bisson <bisson@archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
+# Contributor: Ronald van Haren <ronald.archlinux.org>
+# Contributor: tobias <tobias@archlinux.org>
+# Contributor: Ben <ben@benmazer.net>
+
+pkgname=scribus
+pkgver=1.4.3
+pkgrel=1
+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' 'podofo' 'boost-libs'
+ 'desktop-file-utils' 'shared-mime-info')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('23d85fcfe0a61ff88cc003639efdbb38d43feb7f')
+
+options=('!libtool')
+install=install
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver}"
+ 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}/${pkgname}-${pkgver}/build"
+ cmake "../${pkgname}-${pkgver}" \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DLIB_SUFFIX=""
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}/build"
+ make DESTDIR="${pkgdir}" install
+ install -Dm644 "../${pkgname}-${pkgver}/scribus.desktop" "${pkgdir}/usr/share/applications/scribus.desktop"
+}
diff --git a/community/scribus/install b/community/scribus/install
new file mode 100644
index 000000000..8040f715b
--- /dev/null
+++ b/community/scribus/install
@@ -0,0 +1,11 @@
+post_install() {
+ update-mime-database usr/share/mime &> /dev/null
+ update-desktop-database -q
+}
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}