desktop/scribus/PKGBUILD

49 lines
1.3 KiB
Bash
Raw Normal View History

2012-11-12 13:08:28 +08:00
# maintainer abveritas@chakra-project.org
2010-06-12 06:08:30 +08:00
pkgname=scribus
2016-01-13 05:58:36 +08:00
pkgver=1.4.6
2016-03-16 06:19:44 +08:00
pkgrel=2
2010-06-12 06:08:30 +08:00
pkgdesc="A desktop publishing program"
2012-11-12 13:08:28 +08:00
arch=('x86_64')
2010-06-12 06:08:30 +08:00
url="http://www.scribus.net"
license=('GPL')
2013-09-03 18:24:55 +08:00
install=${pkgname}.install
depends=('libcups' 'lcms' 'qt' 'ghostscript' 'hyphen' 'podofo'
'libart-lgpl' 'python2' 'libxml2' 'cairo' 'boost-libs'
'desktop-file-utils' 'shared-mime-info' 'ruby' 'hunspell')
2013-09-03 18:24:55 +08:00
makedepends=('cmake' 'boost')
2012-11-12 13:08:28 +08:00
screenshot=('http://upload.wikimedia.org/wikipedia/commons/f/f4/Scribus-1.3-Linux.png')
2013-09-03 18:24:55 +08:00
options=(!libtool)
2016-01-13 05:58:36 +08:00
source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz")
sha1sums=('f04a2eecfb531af4beb99645f85165be161b00a3')
2013-09-03 18:24:55 +08:00
prepare() {
cd ${pkgname}-${pkgver}
# fix icon path in .desktop file
sed 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' -i scribus.desktop
}
2010-06-12 06:08:30 +08:00
build() {
2013-09-03 18:24:55 +08:00
mkdir -p build
2010-06-12 06:08:30 +08:00
cd build
2013-09-03 18:24:55 +08:00
2013-01-15 10:18:53 +08:00
cmake ../${pkgname}-${pkgver} \
2010-06-12 06:08:30 +08:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DWITH_ASPELL=0 -DWANT_HUNSPELL=1 \
2010-06-12 06:08:30 +08:00
-DWANT_CAIRO=1 \
-DLIB_SUFFIX=""
make
2010-06-12 06:08:30 +08:00
}
package() {
2013-09-03 18:24:55 +08:00
cd build
make DESTDIR="${pkgdir}" install
install -Dm644 "${srcdir}/${pkgname}-${pkgver}/scribus.desktop" \
"${pkgdir}/usr/share/applications/scribus.desktop"
2010-06-12 06:08:30 +08:00
}