mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 06:27:18 +08:00
Adding scribus
This commit is contained in:
parent
29c2531b1d
commit
6caeb6ef00
45
scribus/PKGBUILD
Normal file
45
scribus/PKGBUILD
Normal file
@ -0,0 +1,45 @@
|
||||
# Contributor: Ronald van Haren <ronald.archlinux.org>
|
||||
# Contributor: tobias <tobias@archlinux.org>
|
||||
# Contributor: Ben <ben@benmazer.net>
|
||||
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
|
||||
|
||||
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
|
||||
}
|
13
scribus/scribus.install
Normal file
13
scribus/scribus.install
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
post_install() {
|
||||
echo "update desktop mime database..."
|
||||
update-mime-database usr/share/mime &2>/dev/null
|
||||
update-desktop-database -q &2>/dev/null
|
||||
}
|
||||
post_upgrade() {
|
||||
post_install $1
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install $1
|
||||
}
|
Loading…
Reference in New Issue
Block a user