desktop/scribus/PKGBUILD

51 lines
1.3 KiB
Bash
Raw Normal View History

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-09-03 18:24:55 +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')
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)
2012-11-12 13:08:28 +08:00
source=("http://sourceforge.net/projects/scribus/files/scribus/${pkgver}/${pkgname}-${pkgver}.tar.xz")
2013-09-03 18:24:55 +08:00
sha256sums=('c72ef314c32f995895ca5025127e65ffeccbe2d445c358bca334a7249ea0afff')
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 \
-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
}