Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
7fadd296
Commit
7fadd296
authored
Jul 11, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./debian/rules: the Debian package creation script builds ffmpeg.
parent
9fa99246
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
debian/rules
debian/rules
+9
-1
No files found.
debian/rules
View file @
7fadd296
...
...
@@ -9,7 +9,8 @@
export DH_COMPAT=3
# Compilation options
export CONFIG_FLAGS="--enable-release --prefix=/usr --enable-gnome --enable-gtk --enable-fb --enable-ggi --enable-sdl --enable-esd --enable-qt --enable-mad --enable-arts --enable-alsa --enable-lirc --enable-a52 --enable-aa --enable-dvbpsi --enable-xosd --enable-mozilla --enable-kde"
export FFMPEG_VERSION=20020707
export CONFIG_FLAGS="--enable-release --prefix=/usr --enable-gnome --enable-gtk --enable-fb --enable-ggi --enable-sdl --enable-esd --enable-qt --enable-mad --enable-arts --enable-alsa --enable-lirc --enable-a52 --enable-aa --enable-dvbpsi --enable-xosd --enable-mozilla --enable-kde --enable-ffmpeg --with-ffmpeg-tree=ffmpeg-$(FFMPEG_VERSION)"
# Remove --without-dvdcss here in non-totalitarian countries
export DVDCSS_FLAGS="--enable-dvd --without-dvdcss"
...
...
@@ -21,6 +22,10 @@ build: build-stamp
build-stamp:
dh_testdir
# Check that we have an ffmpeg tree in here (can be a symlink)
test -d ffmpeg-$(FFMPEG_VERSION)
(cd ffmpeg-$(FFMPEG_VERSION) ; ./configure ; make)
case $(DEB_BUILD_ARCH) in \
i386) \
ARCH_FLAGS="--enable-glide" ;; \
...
...
@@ -40,6 +45,9 @@ clean:
dh_testroot
rm -f build-stamp
# Check that we have an ffmpeg tree in here (can be a symlink)
test -d ffmpeg-$(FFMPEG_VERSION)
-(cd ffmpeg-$(FFMPEG_VERSION) ; make distclean)
-$(MAKE) distclean
dh_clean
...
...
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