==> Entering fakeroot environment...
==> Starting build()...
/tmp/yaourt-tmp-gf/aur-qpress/./PKGBUILD: line 13: cd: /tmp/yaourt-tmp-gf/aur-qpress/src/: No such file or directory
==> ERROR: A failure occurred in build().
Aborting...
==> ERROR: Makepkg was unable to build qpress.
Search Criteria
Package Details: qpress 11-1
Package Actions
| Package Base: | qpress |
|---|---|
| Description: | qpress is a portable file archiver using QuickLZ and designed to utilize fast storage systems to their max |
| Upstream URL: | http://quicklz.com/ |
| Category: | system |
| Licenses: | |
| Submitter: | Zuf |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 2 |
| First Submitted: | 2011-03-23 14:20 |
| Last Updated: | 2012-12-12 12:18 |
Latest Comments
Comment by leafonsword
Comment by techno-geek
I was having issues compiling qpress 11 on ArchLinux x86_64.
g++ -O3 -o qpress qpress.cpp aio.cpp quicklz.c utilities.cpp -lpthread
qpress.cpp: In function ‘int main(int, char**)’:
qpress.cpp:1039:39: error: ‘isatty’ was not declared in this scope
make: *** [g++] Error 1
After some minor googling I added the following line to line 113 of qpress.cpp and it compiled with no issues.
#include <unistd.h> // for isatty()
I hope this helps someone else out there.