mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 11:02:13 +08:00
50 lines
1.4 KiB
Bash
50 lines
1.4 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=scribus
|
|
pkgver=1.3.7
|
|
pkgrel=1
|
|
pkgdesc="A desktop publishing program"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.scribus.net"
|
|
license=('GPL')
|
|
install=scribus.install
|
|
depends=('libcups>=1.3.11' 'lcms>=1.18' 'qt' 'ghostscript>=8.70' \
|
|
'libart-lgpl>=2.3.20' 'python>=2.6.2' 'libxml2>=2.7.3' 'cairo' \
|
|
'desktop-file-utils' 'shared-mime-info')
|
|
makedepends=('cmake')
|
|
options=(!libtool !makeflags)
|
|
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('2c486389172c053ff4da38960e412690')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DWANT_CAIRO=1 \
|
|
-DLIB_SUFFIX=""
|
|
make || return 1
|
|
}
|
|
|
|
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|' \
|
|
${srcdir}/${pkgname}-${pkgver}/scribus.desktop
|
|
|
|
install -Dm644 ${srcdir}/${pkgname}-${pkgver}/scribus.desktop \
|
|
${pkgdir}/usr/share/applications/scribus.desktop
|
|
}
|