2010-06-12 06:12:59 +08:00
|
|
|
#
|
|
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2012-11-12 13:08:28 +08:00
|
|
|
# maintainer abveritas@chakra-project.org
|
2010-06-12 06:08:30 +08:00
|
|
|
|
|
|
|
pkgname=scribus
|
2013-08-12 05:26:27 +08:00
|
|
|
pkgver=1.4.3
|
2013-01-15 10:18:53 +08:00
|
|
|
pkgrel=1
|
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')
|
|
|
|
install=scribus.install
|
2012-01-02 11:14:14 +08:00
|
|
|
depends=('libcups' 'lcms' 'qt' 'ghostscript' \
|
|
|
|
'libart-lgpl' 'python2' 'libxml2' 'cairo' \
|
2011-01-24 09:42:54 +08:00
|
|
|
'desktop-file-utils' 'shared-mime-info' 'ruby')
|
2010-06-12 06:08:30 +08:00
|
|
|
makedepends=('cmake')
|
2012-11-12 13:08:28 +08:00
|
|
|
screenshot=('http://upload.wikimedia.org/wikipedia/commons/f/f4/Scribus-1.3-Linux.png')
|
2010-06-12 06:08:30 +08:00
|
|
|
options=(!libtool !makeflags)
|
2012-11-12 13:08:28 +08:00
|
|
|
source=("http://sourceforge.net/projects/scribus/files/scribus/${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
2013-08-12 05:26:27 +08:00
|
|
|
sha1sums=('30c111762790e4407c13236bbb4b06f04e907f71')
|
2010-06-12 06:08:30 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}
|
|
|
|
mkdir build
|
|
|
|
cd build
|
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 \
|
|
|
|
-DWANT_CAIRO=1 \
|
|
|
|
-DLIB_SUFFIX=""
|
2011-10-26 11:15:31 +08:00
|
|
|
make
|
2010-06-12 06:08:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/build
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
|
|
|
|
# fix icon path in .desktop file
|
|
|
|
sed -i 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' \
|
2013-01-15 10:18:53 +08:00
|
|
|
${srcdir}/${pkgname}-${pkgver}/scribus.desktop
|
2010-06-12 06:08:30 +08:00
|
|
|
|
2013-01-15 10:18:53 +08:00
|
|
|
install -Dm644 ${srcdir}/${pkgname}-${pkgver}/scribus.desktop \
|
2010-06-12 06:08:30 +08:00
|
|
|
${pkgdir}/usr/share/applications/scribus.desktop
|
|
|
|
}
|