Package Details: xar 501-1

Git Clone URL: https://aur.archlinux.org/xar.git (read-only, click to copy)
Package Base: xar
Description: eXtensible ARchive format - apple fork
Upstream URL: https://github.com/apple-oss-distributions/xar
Keywords: macos pkg tpoechtrager xar
Licenses: BSD-3-Clause
Submitter: easimer
Maintainer: envolution
Last Packager: envolution
Votes: 21
Popularity: 0.000000
First Submitted: 2015-08-12 08:19 (UTC)
Last Updated: 2025-03-06 01:22 (UTC)

Sources (21)

Latest Comments

1 2 Next › Last »

envolution commented on 2025-03-06 01:24 (UTC)

@simona hopefully this new build works for you. xlibxml2 detection wasn't automatic for some bizarre reason

simona commented on 2025-02-24 22:52 (UTC)

configure: error: Cannot configure without xml2-config

envolution commented on 2025-01-16 02:49 (UTC) (edited on 2025-01-16 03:08 (UTC) by envolution)

build follows fedora spec file closely - see https://koji.fedoraproject.org/koji/buildinfo?buildID=2512717

jkl commented on 2023-09-04 11:43 (UTC)

git should be added to the makedepends as this will fail to build in a clean chroot.

sickcodes commented on 2021-09-07 13:20 (UTC) (edited on 2022-01-15 15:58 (UTC) by sickcodes)

Noteworthy: https://src.fedoraproject.org/rpms/xar/pull-request/1

Non-arch visitors can create .deb builds:

### NON-ARCH VISITORS
git clone https://aur.archlinux.org/xar.git
cd xar
makedeb
dpkg -i xar_1.6.1-5_amd64.deb

Or pre-built deb of the above here: https://github.com/sickcodes/aur/raw/master/xar/xar_1.6.1-5_amd64.deb

sickcodes commented on 2021-09-07 12:50 (UTC)

git clone https://github.com/tpoechtrager/xar.git
cd  xar/xar
./autogen.sh
make
./src/xar

since https://aur.archlinux.org/packages/xar-tpoechtrage-git/ is also abandoned

lightdot commented on 2018-09-04 05:10 (UTC)

@mikezackles, thanks, works for me too.

@easimer, perhaps this could be released as 1.6.1-5?

mikezackles commented on 2018-07-12 22:35 (UTC)

fwiw, this gets things working for me: https://gist.github.com/mikezackles/449fed039897f78b8d462902e5626429

easimer commented on 2017-05-27 08:25 (UTC)

Patched the OpenSSL incompatibility. Instead of OpenSSL >1.1.x, this package now depends on version 1.0. The `autogen.sh` line has been modified to include the v1.0 headers and link the correct library. (Thanks m3thodic!)

m3thodic commented on 2017-05-27 07:38 (UTC) (edited on 2017-05-27 07:38 (UTC) by m3thodic)

If you are getting OpenSSL issues, install openssl-1.0 and change the ./autogen.sh line (line 21 in PKGBUILD) to the following: ./autogen.sh --prefix=/usr --mandir=/usr/share/man CFLAGS="-I/usr/include/openssl-1.0" LDFLAGS="-L/usr/lib/openssl-1.0"