Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
b3bfc494
Commit
b3bfc494
authored
Oct 11, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete feisty script
parent
39173fb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
81 deletions
+0
-81
extras/misc/ubuntu-medibuntu-feisty.sh
extras/misc/ubuntu-medibuntu-feisty.sh
+0
-81
No files found.
extras/misc/ubuntu-medibuntu-feisty.sh
deleted
100755 → 0
View file @
39173fb7
#!/bin/sh
# This script install all 3rd party dependencies for ubuntu
# from the medibuntu repository.
LIST
=
"
\
libcaca0
\
libflac7
\
libfreetype6
\
libfribidi0
\
libgcrypt11
\
libgpg-error0
\
libgnutls13
\
libgtk2.0-0
\
libid3tag0
\
libmad0
\
libmpcdec3
\
libnspr4
\
libnss3
\
libnotify1
\
libdbus-1-3
\
libhal1
\
libogg0
\
libsdl1.2debian
\
libsdl-image1.2
\
libsdl-net1.2
\
libsdl-mixer1.2
\
libvorbis0a
\
libvorbisenc2
\
libshout3
\
libspeex1
\
libtheorai0
\
libsmbclient
\
libxml2
\
libmodplug0c2
\
libdvdnav4
\
libdvdcss2
\
libebml-dev
\
libfaac0
\
libfaad2-0
\
liblame0
\
libmatroska-dev
\
libmpeg2-4
\
liba52-0.7.4
\
libwxbase2.6-0
\
libwxgtk2.6-0
\
libx264-dev
\
libtwolame0
\
libdts-dev
\
libdirac0c2a"
# Are we been run on ubuntu feiste ?
if
!
test
-f
/etc/debian_version
;
then
echo
"ERROR: no /etc/debian_version file found"
echo
"ERROR: this is a non debian based system."
echo
"ERROR: this script is meant to be run on ubuntu feisty 7.04"
exit
1
fi
version
=
`
cat
/etc/debian_version
`
if
!
test
"
${
version
}
"
=
"4.0"
;
then
echo
"ERROR: wrong version number
${
version
}
"
echo
"ERROR: this script is meant to be run on ubuntu feisty 7.04"
exit
1
fi
if
!
test
"
`
whoami
`
"
=
"root"
;
then
echo
"ERROR: run this script as root user (eg: using sudo
$*
)"
exit
1
fi
# Test if medibuntu repos is installed.
if
!
test
-f
/etc/apt/sources.list.d/medibuntu.list
;
then
echo
"Installing medibuntu repository for dependencies"
wget http://www.medibuntu.org/sources.list.d/feisty.list
-O
/etc/apt/sources.list.d/medibuntu.list
wget
-q
http://packages.medibuntu.org/medibuntu-key.gpg
-O-
|
sudo
apt-key add -
&&
sudo
apt-get update
echo
"done"
fi
apt-get
install
${
LIST
}
exit
$?
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment