blob: 3ce99090c779eed137ea39f7616f366ef2521356 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
src_configure() {
append-ldflags -static
}
src_install() {
mkdir "${D}"/sbin || die "Failed to create '${D}/sbin'!"
install -m 0755 -s src/unionfs "${D}"/sbin/unionfs \
|| die "Failed to install 'unionfs' to '${D}/sbin/'!"
"${STRIP}" --strip-all "${D}"/sbin/unionfs \
|| die "Failed to strip '${D}/sbin/unionfs'!"
}
|