Skip to content

Commit

Permalink
Merge pull request #2572 from mariux64/add-fix-lpp
Browse files Browse the repository at this point in the history
fix-lpp: Add version 1.0
  • Loading branch information
donald authored Jan 26, 2022
2 parents 67cffec + 165c1a5 commit 1d89bee
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions fix-lpp.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#!/usr/bin/env beesh

# BEE_VERSION fix-lpp-1.0-0

# more info: https://github.molgen.mpg.de/mariux64/fix-lpp

SRCURL[0]="https://github.molgen.mpg.de/mariux64/fix-lpp/archive/refs/tags/v${PKGVERSION}.tar.gz fix-lpp.{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() {
(
set -vx
ls out
cd out
for d in *; do
mkdir -p $D/lib/modules/$d
cp $d/fix-lpp.ko $D/lib/modules/$d/
done
)
}

#mee_install_post() {
# exit
#}

0 comments on commit 1d89bee

Please sign in to comment.