Core/pacman/build.conf

26 lines
759 B
Plaintext
Raw Normal View History

2024-09-07 23:18:11 +08:00
#########################################################################
# BUILD CONFIGURE
BUILD_CONFIGURE="\
../configure --build=${CHOST} \
--host=${CHOST} \
--prefix=/usr \
--libdir=/usr/lib64"
CONFIGURE="\
./configure --build=${CHOST} \
--host=${CHOST} \
--prefix=/usr \
--libdir=/usr/lib64"
#########################################################################
# PICK
_pick() {
local p=${1} f d; shift
for f; do
d=${srcdir}/${p}/${f#${pkgdir}/}
mkdir -p $(dirname ${d})
mv ${f} ${d}
rmdir -p --ignore-fail-on-non-empty $(dirname ${f})
done
}