Skip to content

Commit

Permalink
Add spl/zfs version 0.7.3
Browse files Browse the repository at this point in the history
Userland tools for the ZFS file system from oracle

Homepage: http://zfsonlinux.org/
  • Loading branch information
thomas committed Dec 15, 2017
1 parent c715a86 commit 9e8dca9
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
35 changes: 35 additions & 0 deletions spl.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env beesh

# BEE_VERSION spl-0.7.3-0

SRCURL[0]="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PKGVERSION}/spl-${PKGVERSION}.tar.gz"

PATCHURL[0]=""

# BEE_CONFIGURE=compat

# BEE_BUILDTYPE=

# EXCLUDE=()

# build_in_sourcedir

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

mee_configure() {
bee_configure --with-config=user --with-spec=generic
}

#mee_build() {
# bee_build prefix=${PREFIX}
#}

#mee_install() {
# bee_install prefix=${D}/${PREFIX}
#}
42 changes: 42 additions & 0 deletions zfs.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#!/usr/bin/env beesh

# BEE_VERSION zfs-0.7.3-0

SRCURL[0]="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PKGVERSION}/zfs-${PKGVERSION}.tar.gz"

PATCHURL[0]=""

# BEE_CONFIGURE=compat

# BEE_BUILDTYPE=

# EXCLUDE=()

build_in_sourcedir

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

mee_configure() {
bee_configure --with-config=user --with-spec=generic --with-mounthelperdir=/usr/sbin
}

#mee_build() {
# bee_build prefix=${PREFIX}
#}

#mee_install() {
# bee_install prefix=${D}/${PREFIX}
#}

mee_install_post() {
start_cmd rm -vrf ${D}/etc/init.d
start_cmd rm -vrf ${D}/lib
start_cmd rm -vrf ${D}/usr/lib/modules-load.d
start_cmd rm -vrf ${D}/usr/lib/systemd
}

0 comments on commit 9e8dca9

Please sign in to comment.