-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
As we get more serious with our bcache experiments, install the userspace tools.
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION bcache-tools-1.1-0 | ||
|
||
# more info: https://docs.kernel.org/admin-guide/bcache.html | ||
|
||
#SRCURL[0]="https://git.kernel.org/pub/scm/linux/kernel/git/colyli/bcache-tools.git/snapshot/bcache-tools-${PKGVERSION}.tar.gz" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/6cf487791df2b2b2f1683fcb625e09d2/bcache-tools-1.1.tar.gz" | ||
|
||
# PATCHURL+=() | ||
|
||
# build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
#mee_configure() { | ||
# bee_configure | ||
#} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
mee_install() { | ||
mkdir -p $D$SBINDIR | ||
mkdir -p $D/lib/udev/rules.d | ||
mkdir -p $D$MANDIR/man8 | ||
bee_install | ||
} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |