mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-28 10:02:43 +01:00
f5c25ce87e
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
27 lines
868 B
Bash
27 lines
868 B
Bash
#!/bin/sh
|
|
# This script helps you to make the source package
|
|
# of the virtualbox guest additions kernel modules.
|
|
# IMPORTANT: The virtualbox-ose-addons 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-addons
|
|
VERSION=$(VBoxControl -V | grep -e '^[0-9].[0-9].[0-9]*r[0-9]*' | cut -d "r" -f 1)
|
|
|
|
mkdir $PRGNAM
|
|
|
|
echo "--> Copying sourcecode from /usr/src"
|
|
cp -rf /usr/src/vboxguest-$VERSION $PRGNAM/vboxguest
|
|
cp -rf /usr/src/vboxsf-$VERSION $PRGNAM/vboxsf
|
|
cp -rf /usr/src/vboxvideo-$VERSION $PRGNAM/vboxvideo
|
|
|
|
echo "--> Making the sourcecode tarball: $PRGNAM-src-$VERSION.tar.xz"
|
|
tar -cJf $PRGNAM-$VERSION.tar.xz $PRGNAM
|
|
|
|
echo "--> Erasing the sourcecode directory: $PRGNAM/"
|
|
rm -rf $PRGNAM/
|
|
|
|
echo "--> Sourcecode tarball for $PRGNAM: $PRGNAM-$VERSION.tar.xz"
|