Skip to content
Permalink
b4889c82a7
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 43 lines (31 sloc) 631 Bytes
#!/usr/bin/env beesh
# BEE_VERSION fix-uring-1.0-0
# more info: https://github.molgen.mpg.de/mariux64/fix-uring
SRCURL[0]="https://github.molgen.mpg.de/mariux64/fix-uring/archive/refs/tags/v${PKGVERSION}.tar.gz fix-uring.${PKGVERSION}.tar.gz"
# PATCHURL+=()
build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
#mee_configure() {
# bee_configure
#}
mee_build() {
./build.sh
}
mee_install() {
(
cd out
for d in *; do
mkdir -p $D/lib/modules/$d
cp $d/fix-uring.ko $D/lib/modules/$d/
done
)
}
#mee_install_post() {
# exit
#}