Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 53 lines (36 sloc) 1 KB
#!/usr/bin/env beesh
# BEE_VERSION xfsdump-3.1.9-0
# SRCURL[0]="https://www.kernel.org/pub/linux/utils/fs/xfs/xfsdump/xfsdump-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/086f7582875b14c17522867ffe3e202b/xfsdump-3.1.9.tar.xz"
# PATCHURL+=()
build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
#mee_configure() {
# bee_configure
#}
#mee_configure() {
# bee_configure
#}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'
# xfsdumps' configure is *realy* obstinate in installing to /sbin if the prefix
# is set to /usr. The kludge here puts it straight, so it fits in our layout again.
mee_install_post() {
install_post_toggle_symlink /usr/sbin/xfsdump /sbin/xfsdump
install_post_toggle_symlink /usr/sbin/xfsrestore /sbin/xfsrestore
}
install_post_toggle_symlink() {
start_cmd mv -v ${D}$2 ${D}$1
start_cmd ln -vsT $1 ${D}$2
}