mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 00:48:06 +01:00
13 lines
278 B
Bash
13 lines
278 B
Bash
|
# fetch build_style: fetches and copies files to ${wrksrc}.
|
||
|
|
||
|
do_extract() {
|
||
|
local f curfile
|
||
|
|
||
|
mkdir -p "${wrksrc}"
|
||
|
for f in ${distfiles}; do
|
||
|
curfile="${f#*>}"
|
||
|
curfile="${curfile##*/}"
|
||
|
cp ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${curfile} "${wrksrc}/${curfile}"
|
||
|
done
|
||
|
}
|