summaryrefslogtreecommitdiffstats
path: root/system/virtualbox-kernel/virtualbox-kernel-mksrctarball.sh
blob: a4185b3456fc56638fb404b20cb06ca3e234350b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
# This script helps you to make the source package
# of the virtualbox host kernel module.
# IMPORTANT: The virtualbox-ose version you want to use
# must already be installed!

# Based on the ffmpeg-mksrctarball.sh from the SlackBuilds.org repository

set -e

PRGNAM=virtualbox-kernel
VERSION=$(VBoxManage -v | grep -e '^[0-9].[0-9].[0-9]*r[0-9]*' | cut -d "r" -f 1)

MODULE_SRC=$(grep "MODULE_SRC=" /etc/vbox/vbox.cfg | cut -d "=" -f 2 | cut -d "\"" -f 2)

echo "--> Copying sourcecode from $MODULE_SRC/$PRGNAM-$VERSION"
cp -rf $MODULE_SRC/$PRGNAM-$VERSION $PRGNAM-$VERSION

echo "--> Making the sourcecode tarball: ./$PRGNAM-$VERSION.tar.xz"
tar -cJf $PRGNAM-$VERSION.tar.xz $PRGNAM-$VERSION

echo "--> Erasing the sourcecode directory: ./$PRGNAM-$VERSION/"
rm -rf $PRGNAM-$VERSION/

echo "--> Sourcecode tarball for $PRGNAM: $(pwd)/$PRGNAM-$VERSION.tar.xz"