Package Details: xaralx-bin 0.7_rev1785-17

Git Clone URL: https://aur.archlinux.org/xaralx-bin.git (read-only, click to copy)
Package Base: xaralx-bin
Description: An advanced vector graphics program, development release
Upstream URL: http://www.xaraxtreme.org/
Licenses: GPL
Conflicts: xaralx
Provides: xaralx
Submitter: dark-saber
Maintainer: dark-saber
Last Packager: dark-saber
Votes: 77
Popularity: 0.000000
First Submitted: 2017-03-25 07:16 (UTC)
Last Updated: 2022-07-21 14:24 (UTC)

Dependencies (8)

Required by (0)

Sources (1)

Latest Comments

1 2 3 4 Next › Last »

bradst commented on 2017-03-26 03:25 (UTC)

The source code is available here, if anyone is interested in building it themselves: https://launchpad.net/ubuntu/+source/xaralx https://launchpad.net/ubuntu/+archive/primary/+files/xaralx_0.7r1785.orig.tar.gz

dark-saber commented on 2017-03-25 07:19 (UTC)

jelly: Updated the deps, thanks! And this package should become a -bin one soon.

jelly commented on 2017-03-21 09:52 (UTC)

Add lib32-libsm as dependency for 32 bit and rename the package to xaralx-bin since it's really shipping a silly binary :(

dark-saber commented on 2015-09-21 20:18 (UTC)

@djringjr: Thank you, I've updated the PKGBUILD based on your file, so the package should build fine on i686 machines.

djringjr commented on 2015-09-21 18:23 (UTC)

I have just left a new PKGBUILD file. Make a folder / directory in a temporary place. mkdir /tmp/xaralx Save PKGBUILD (from the previous comment) to /tmp/xaralx As regular user: makepkg ./PKGBUILD This file should be produced in /tmp/xaralx: xaralx-0.7_rev1785-9-i686.pkg.tar.xz To install xaralx as supervisor/root user: pacman -U xaralx-0.7_rev1785-9-i686.pkg.tar.xz For complete functionality of xaralx, install imagemagick. As supervisor / root: pacman -S imagemagick xaralx will now work.

djringjr commented on 2015-09-21 18:15 (UTC)

# Maintainer: Dmitry Kharitonov <darksab0r@gmail.com> # Contributor: mmm # Contributor: Woody Gilk <woody@archlinux.org> # Contributor: Stefan Husmann <stefan-husmann@t-online.de> # This file corrected and verified as working by: DJ Ring, Jr <n1ea@arrl.net> pkgname=xaralx pkgver=0.7_rev1785 pkgrel=9 pkgdesc="An advanced vector graphics program, development release" arch=('i686' 'x86_64') url="http://www.xaraxtreme.org/" license=('GPL') depends=('wxgtk' 'libpng' 'libjpeg' 'libxml2') makedepends=('pkgconfig') optdepends=('imagemagick: needed for some conversions') install=${pkgname}.install source=(http://downloads.xara.com/opensource/xaralx${pkgver}.tar.bz2) md5sums=('14c6b270bcc1598b9b3d38f9a6db71aa') if [ "$CARCH" = "x86_64" ]; then depends+=(lib32-{libstdc++5 pangox-compat gtk2}) elif [ "$CARCH" = "i686" ]; then depends+=(libstdc++5 pangox-compat gtk2) fi package() { cd $srcdir/$pkgname ## needed for source/svn build # autoreconf -f -i -s # ./configure --prefix=/usr --enable-filters \ # --enable-xarlib --disable-svnversion --with-gnu-ld # make # make DESTDIR=$pkgdir install install -d $pkgdir/usr/bin $pkgdir/usr/share/xaralx/doc $pkgdir/usr/share/licenses/xaralx install -D -m755 bin/* $pkgdir/usr/bin cp -R share/xaralx $pkgdir/usr/share/ chmod -R 644 $pkgdir/usr/share/xaralx install -D -m644 share/xaralx/doc/LICENSE $pkgdir/usr/share/licenses/xaralx/LICENSE # Desktop compatibility install -D -m644 $pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png install -D -m644 $pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop install -D -m644 $pkgname.xml $pkgdir/usr/share/mime/packages/$pkgname.xml }

ids1024 commented on 2015-02-08 00:28 (UTC)

This no longer builds. Pacman does not support packages without a package() function anymore.

thore commented on 2014-10-26 11:41 (UTC)

Needed to add lib32-libstdc++5 as runtime dependency.

barton commented on 2014-05-11 19:12 (UTC)

==> WARNING: Using a PKGBUILD without a package() function is deprecated. On i686 error while loading shared libraries: libpangox-1.0.so.0: so 'pangox-compat' goes under the elif [ "$CARCH" = "i686" ] clause. Hope to see an update soon. Thanks.