desktop/scribus/PKGBUILD

47 lines
1.3 KiB
Bash
Raw Normal View History

2010-06-12 06:08:30 +08:00
pkgname=scribus
2016-01-13 05:58:36 +08:00
pkgver=1.4.6
2017-01-25 02:42:17 +08:00
pkgrel=4
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')
2016-11-30 23:54:10 +08:00
install=$pkgname.install
2013-09-03 18:24:55 +08:00
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-11-30 23:54:10 +08:00
source=("http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz")
2016-01-13 05:58:36 +08:00
sha1sums=('f04a2eecfb531af4beb99645f85165be161b00a3')
2013-09-03 18:24:55 +08:00
prepare() {
2016-11-30 23:54:10 +08:00
cd $pkgname-$pkgver
2013-09-03 18:24:55 +08:00
# 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
2016-11-30 23:54:10 +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
2016-11-30 23:54:10 +08:00
make DESTDIR=$pkgdir install
2013-09-03 18:24:55 +08:00
2017-01-25 02:42:17 +08:00
install -Dm644 ${srcdir}/${pkgname}-${pkgver}/scribus.desktop "${pkgdir}/usr/share/applications/scribus.desktop"
install -Dm644 ${srcdir}/${pkgname}-${pkgver}/resources/icons/AppIcon.png "${pkgdir}/usr/share/icons/hicolor/32x32/apps/scribus.png"
2010-06-12 06:08:30 +08:00
}