Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
427
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
aba49cd1
Commit
aba49cd1
authored
1 year ago
by
Sean McGovern
Committed by
Felix Paul Kühne
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
bootstrap: check for gperf
parent
23e220ab
No related branches found
No related tags found
1 merge request
!4265
bootstrap: check for gperf
Pipeline
#385712
passed with stage
in 55 minutes and 43 seconds
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
extras/tools/SHA512SUMS
+1
-0
1 addition, 0 deletions
extras/tools/SHA512SUMS
extras/tools/bootstrap
+1
-0
1 addition, 0 deletions
extras/tools/bootstrap
extras/tools/packages.mak
+3
-0
3 additions, 0 deletions
extras/tools/packages.mak
extras/tools/tools.mak
+17
-0
17 additions, 0 deletions
extras/tools/tools.mak
with
22 additions
and
0 deletions
extras/tools/SHA512SUMS
+
1
−
0
View file @
aba49cd1
...
...
@@ -17,3 +17,4 @@ d24849b93de58b20f518c071687e7bfa653a96600382f36c4cf7fc1047656458f75f093b911b786b
37b3a421419b16930e53181c431fe3b4afd55ac54733a5df08376641fd2fb88eeb73ee7abe3788f3e491e7c1b215c7f35aefa66f44b09008ad22b76ab2998830 ninja-1.11.1.tar.gz
8b5768cf0dab5f88d2f3e3962305910e707ff810cbd21b5997aab0bb6abe1c4d5dbd24ec59ab4072f1faa9b81daa8be993d56679445afa93700676f52e314d23 meson-1.2.0.tar.gz
27acef46d9eb67203d708b57d80b853f76fa4b9c2720ff36ec161e6cdf702249e7982214ddf60bae75511aa79bc7d92aa27e3eab7ef9c0f5c040e8e42e76a385 libtool-2.4.7.tar.gz
855ebce5ff36753238a44f14c95be7afdc3990b085960345ca2caf1a2db884f7db74d406ce9eec2f4a52abb8a063d4ed000a36b317c9a353ef4e25e2cca9a3f4 gperf-3.1.tar.gz
This diff is collapsed.
Click to expand it.
extras/tools/bootstrap
+
1
−
0
View file @
aba49cd1
...
...
@@ -152,6 +152,7 @@ check gettext
check help2man
check meson 1.0.0
check_ninja
check gperf
DEPS_ONLY
=
"help2man"
...
...
This diff is collapsed.
Click to expand it.
extras/tools/packages.mak
+
3
−
0
View file @
aba49cd1
...
...
@@ -57,3 +57,6 @@ MESON_URL=https://github.com/mesonbuild/meson/releases/download/$(MESON_VERSION)
NINJA_VERSION
=
1.11.1
NINJA_BUILD_NAME
=
$(
NINJA_VERSION
)
.g95dee.kitware.jobserver-1
NINJA_URL
=
https://github.com/Kitware/ninja/archive/refs/tags/v
$(
NINJA_BUILD_NAME
)
.tar.gz
GPERF_VERSION
=
3.1
GPERF_URL
=
$(
GNU
)
/gperf/gperf-
$(
GPERF_VERSION
)
.tar.gz
This diff is collapsed.
Click to expand it.
extras/tools/tools.mak
+
17
−
0
View file @
aba49cd1
...
...
@@ -389,6 +389,23 @@ CLEAN_PKG += ninja
DISTCLEAN_PKG
+=
ninja-
$(
NINJA_VERSION
)
.tar.gz
CLEAN_FILE
+=
.buildninja
# gperf
gperf-$(GPERF_VERSION).tar.gz
:
$(
call download_pkg,
$(
GPERF_URL
)
,gperf
)
gperf
:
gperf-$(GPERF_VERSION).tar.gz
$(
UNPACK
)
$(
MOVE
)
.buildgperf
:
gperf
(
cd
$<
;
./configure
--prefix
=
$(
PREFIX
)
&&
$(
MAKE
)
&&
$(
MAKE
)
install
)
touch
$@
CLEAN_PKG
+=
gperf
DISTCLEAN_PKG
+=
gperf-
$(
GPERF_VERSION
)
.tar.gz
CLEAN_FILE
+=
.buildgperf
#
#
#
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment