Skip to content

Add spl/zfs version 0.7.3 #553

Merged
merged 2 commits into from
Jan 31, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can’t bee’s EXCLUDE directive be used?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as thomas said: rm is better. To see what's going on.

}