diff options
author | Azamat H. Hackimov <azamat.hackimov@gmail.com> | 2017-03-21 16:28:25 +0500 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-03-22 12:22:09 +0100 |
commit | db85f6bd42f42c0a1aec62ae080faf3fafaf6598 (patch) | |
tree | aa576b5621d65c8f9b963531bb38a2c4463f1c9e /app-arch/qpress/files | |
parent | dev-vcs/subversion: add cygwin support (diff) | |
download | gentoo-db85f6bd42f42c0a1aec62ae080faf3fafaf6598.tar.gz gentoo-db85f6bd42f42c0a1aec62ae080faf3fafaf6598.tar.bz2 gentoo-db85f6bd42f42c0a1aec62ae080faf3fafaf6598.zip |
app-arch/qpress: new package.
This package required as runtime dependency for dev-db/percona-xtrabackup.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4270
Diffstat (limited to 'app-arch/qpress/files')
-rw-r--r-- | app-arch/qpress/files/makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app-arch/qpress/files/makefile b/app-arch/qpress/files/makefile new file mode 100644 index 000000000000..63c1f91b3943 --- /dev/null +++ b/app-arch/qpress/files/makefile @@ -0,0 +1,6 @@ +CXX ?= g++ +CXXFLAGS ?= -O3 +LIBS=-lpthread + +qpress: + $(CXX) $(CXXFLAGS) qpress.cpp aio.cpp quicklz.c utilities.cpp -o $@ $(LIBS) |