aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2019-08-30 18:26:34 +0200
committerThomas Deutschmann <whissi@gentoo.org>2019-08-30 22:41:34 +0200
commit9dea735590ebfff278710148fa8743777a18c4bd (patch)
tree08aced58089525f70feef1381bc70dd7d752c241 /gkbuilds/expat.gkbuild
parentgen_funcs.sh: Import makeopts_jobs function from multiprocessing eclass (diff)
downloadgenkernel-9dea735590ebfff278710148fa8743777a18c4bd.tar.gz
genkernel-9dea735590ebfff278710148fa8743777a18c4bd.tar.bz2
genkernel-9dea735590ebfff278710148fa8743777a18c4bd.zip
Add support for LVM thin provisioning
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'gkbuilds/expat.gkbuild')
-rw-r--r--gkbuilds/expat.gkbuild18
1 files changed, 18 insertions, 0 deletions
diff --git a/gkbuilds/expat.gkbuild b/gkbuilds/expat.gkbuild
new file mode 100644
index 0000000..e280846
--- /dev/null
+++ b/gkbuilds/expat.gkbuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+src_configure() {
+ local myconf=(
+ --enable-static
+ )
+
+ gkconf "${myconf[@]}"
+}
+
+src_install() {
+ default
+
+ rm -rf \
+ "${D}"/usr/bin \
+ "${D}"/usr/share
+}