mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
community/scribus to 1.4.5-2
This commit is contained in:
parent
bc8ce73d92
commit
23c930d8e6
1 changed files with 8 additions and 8 deletions
|
@ -10,7 +10,7 @@
|
|||
|
||||
pkgname=scribus
|
||||
pkgver=1.4.5
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
pkgdesc='Desktop publishing software'
|
||||
url="http://www.scribus.net/"
|
||||
license=('GPL')
|
||||
|
@ -19,7 +19,7 @@ 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"
|
||||
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
|
||||
'arm.patch')
|
||||
sha1sums=('70685aeb66d1f8f4984125c56f8f6e059af267c3'
|
||||
'3a7b787f1b998d6af05d2f920dcecdc0b215cc26')
|
||||
|
@ -30,17 +30,16 @@ install=install
|
|||
prepare() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
patch -p1 -i "${srcdir}"/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
|
||||
install -d build
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/build"
|
||||
cmake "../${pkgname}-${pkgver}" \
|
||||
cd "${srcdir}/${pkgname}-${pkgver}/build"
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_SKIP_RPATH=ON \
|
||||
|
@ -49,7 +48,8 @@ build() {
|
|||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/build"
|
||||
cd "${srcdir}/${pkgname}-${pkgver}/build"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
install -Dm644 "../${pkgname}-${pkgver}/scribus.desktop" "${pkgdir}/usr/share/applications/scribus.desktop"
|
||||
install -Dm644 ../scribus.desktop "${pkgdir}/usr/share/applications/scribus.desktop"
|
||||
install -Dm644 ../resources/icons/AppIcon.png "${pkgdir}/usr/share/icons/hicolor/32x32/scribus.png"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue