Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
b1b9ca2e
Commit
b1b9ca2e
authored
2 years ago
by
alice
Browse files
Options
Downloads
Patches
Plain Diff
community/soundtouch: remove -Ofast
parent
6c7fb48f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/soundtouch/APKBUILD
+3
-1
3 additions, 1 deletion
community/soundtouch/APKBUILD
community/soundtouch/no-fast.patch
+13
-0
13 additions, 0 deletions
community/soundtouch/no-fast.patch
with
16 additions
and
1 deletion
community/soundtouch/APKBUILD
+
3
−
1
View file @
b1b9ca2e
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname
=
soundtouch
pkgname
=
soundtouch
pkgver
=
2.3.2
pkgver
=
2.3.2
pkgrel
=
1
pkgrel
=
2
pkgdesc
=
"Audio Processing library for changing Tempo, Pitch and Playback Rates"
pkgdesc
=
"Audio Processing library for changing Tempo, Pitch and Playback Rates"
url
=
"http://www.surina.net/soundtouch/"
url
=
"http://www.surina.net/soundtouch/"
arch
=
"all"
arch
=
"all"
...
@@ -10,6 +10,7 @@ makedepends="cmake samurai"
...
@@ -10,6 +10,7 @@ makedepends="cmake samurai"
subpackages
=
"
$pkgname
-dev"
subpackages
=
"
$pkgname
-dev"
source
=
"https://www.surina.net/soundtouch/soundtouch-
$pkgver
.tar.gz
source
=
"https://www.surina.net/soundtouch/soundtouch-
$pkgver
.tar.gz
aarch64-neon.patch.noauto
aarch64-neon.patch.noauto
no-fast.patch
"
"
builddir
=
"
$srcdir
/
$pkgname
"
builddir
=
"
$srcdir
/
$pkgname
"
options
=
"!check"
# no tests
options
=
"!check"
# no tests
...
@@ -51,4 +52,5 @@ package() {
...
@@ -51,4 +52,5 @@ package() {
sha512sums
=
"
sha512sums
=
"
72cd38f3e11f3c55ff7ed3691fd9a749a5f8d072e08ed03f2fd43a8664962138afaf3e4647116940e86f6ae374a1ba3bcd4b108280da29f3ffa6091cf383ea35 soundtouch-2.3.2.tar.gz
72cd38f3e11f3c55ff7ed3691fd9a749a5f8d072e08ed03f2fd43a8664962138afaf3e4647116940e86f6ae374a1ba3bcd4b108280da29f3ffa6091cf383ea35 soundtouch-2.3.2.tar.gz
f32042e29c74a17df745c42ad3ebaf72a8c303f63e45cc8c5d467e4598fed0a51dab37885b5850d8c7ef2df4976c475eebb18c0517eeb2776a09ebb7376f922b aarch64-neon.patch.noauto
f32042e29c74a17df745c42ad3ebaf72a8c303f63e45cc8c5d467e4598fed0a51dab37885b5850d8c7ef2df4976c475eebb18c0517eeb2776a09ebb7376f922b aarch64-neon.patch.noauto
4c46d42f07d4de27de7492e0f53c984949ce1724257e54947d85258bad7dd2373546b47590212a28a7c4d702acff83bed7e20dc2242f55f036296ce4e9b1d421 no-fast.patch
"
"
This diff is collapsed.
Click to expand it.
community/soundtouch/no-fast.patch
0 → 100644
+
13
−
0
View file @
b1b9ca2e
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 14f23e8..993f0e1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,7 +7,7 @@
if(MSVC)
set(COMPILE_DEFINITIONS /O2 /fp:fast)
set(COMPILE_OPTIONS )
else()
- set(COMPILE_OPTIONS -Ofast)
+ set(COMPILE_OPTIONS -O3)
endif()
#####################
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