Skip to content

Commit

Permalink
fix-lpp: Add version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Jan 25, 2022
1 parent 67cffec commit 165c1a5
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 165c1a5

Please sign in to comment.