diff options
author | tnut <tnut at nutyx dot com> | 2011-08-14 19:10:15 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2011-08-14 19:10:15 +0200 |
commit | 93edd1972f595e02109b65bbfc4afd9ae6e233eb (patch) | |
tree | 96a33b5f4f4900b3dcd2f70dcc5c8e38df136d53 /extra/scribus/Pkgfile | |
parent | 065f3fbb0a9ba6fd7154607f336b926e5a448920 (diff) | |
download | nutyx-extra-93edd1972f595e02109b65bbfc4afd9ae6e233eb.tar.gz nutyx-extra-93edd1972f595e02109b65bbfc4afd9ae6e233eb.tar.bz2 nutyx-extra-93edd1972f595e02109b65bbfc4afd9ae6e233eb.tar.xz nutyx-extra-93edd1972f595e02109b65bbfc4afd9ae6e233eb.zip |
ajout de scribus 1.4.0.rc5-1
Diffstat (limited to 'extra/scribus/Pkgfile')
-rwxr-xr-x | extra/scribus/Pkgfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/scribus/Pkgfile b/extra/scribus/Pkgfile new file mode 100755 index 000000000..5e2d1df10 --- /dev/null +++ b/extra/scribus/Pkgfile @@ -0,0 +1,27 @@ +# Description: Equivalent de Publisher en logiciel libre +# URL: http://www.scribus.net +# Maintainer: NuTyX coreteam +# Packager: thierryn1 at hispeed dot ch +# Depends on: libcups, qt, gnutls, python, kerberos, boost, ghostscript, lcms, libxml2, cairo, desktop-file-utils, shared-mime-info +# Run on: libcups,qt,gnutls,kerberos,boost,ghostscript + +name=scribus +version=1.4.0.rc5 +release=1 +source=(http://sourceforge.net/projects/scribus/files/scribus-devel/$version/scribus-$version.tar.bz2) + + +build() { + cd $name-$version + mkdir build + cd build + cmake ../ -DCMAKE_INSTALL_PREFIX=/usr \ + -DWANT_CAIRO=1 \ + -DLIB_SUFFIX="" + make + make DESTDIR=$PKG install + rm -r $PKG/usr/share/doc + install -Dm644 $SRC/$name-$version/scribus.desktop \ + $PKG/usr/share/applications/scribus.desktop +} + |