Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
7de8efc5
Commit
7de8efc5
authored
Nov 08, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extras/tools: add yasm
parent
314157be
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
0 deletions
+22
-0
extras/tools/bootstrap
extras/tools/bootstrap
+1
-0
extras/tools/packages.mak
extras/tools/packages.mak
+4
-0
extras/tools/tools.mak
extras/tools/tools.mak
+17
-0
No files found.
extras/tools/bootstrap
View file @
7de8efc5
...
...
@@ -39,6 +39,7 @@ check libtool
check pkg-config
check xz
check cmake
check yasm
[
-n
"
$NEEDED
"
]
&&
mkdir
-p
build/
...
...
extras/tools/packages.mak
View file @
7de8efc5
GNU
=
http://ftp.gnu.org/gnu
YASM_VERSION
=
1.2.0
#YASM_URL=$(CONTRIB_VIDEOLAN)/yasm-$(YASM_VERSION).tar.gz
YASM_URL
=
http://www.tortall.net/projects/yasm/releases/yasm-
$(YASM_VERSION)
.tar.gz
CMAKE_VERSION
=
2.8.3
CMAKE_URL
=
http://www.cmake.org/files/v2.8/cmake-
$(CMAKE_VERSION)
.tar.gz
...
...
extras/tools/tools.mak
View file @
7de8efc5
...
...
@@ -33,6 +33,23 @@ MOVE = mv $(UNPACK_DIR) $@ && touch $@
# package rules
#
# yasm
yasm-$(YASM_VERSION).tar.gz
:
$(download)
$(YASM_URL)
yasm
:
yasm-$(YASM_VERSION).tar.gz
$(UNPACK)
$(MOVE)
.yasm
:
yasm
(
cd
$<
;
./configure
--prefix
=
$(PREFIX)
&&
make
&&
make
install
)
touch
$@
CLEAN_FILE
+=
.yasm
CLEAN_PKG
+=
yasm
DISTCLEAN_PKG
+=
yasm-
$(YASM_VERSION)
.tar.gz
# cmake
cmake-$(CMAKE_VERSION).tar.gz
:
...
...
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