mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 12:41:55 +01:00
upgpkg: 15.0.1.u1-1
This commit is contained in:
parent
481b751f49
commit
49d411abf8
2 changed files with 12 additions and 13 deletions
12
PKGBUILD
12
PKGBUILD
|
|
@ -14,12 +14,12 @@ pkgname=(
|
|||
java-openjfx-doc
|
||||
java-openjfx-src
|
||||
)
|
||||
_majorver=14
|
||||
_majorver=15
|
||||
_minorver=0
|
||||
_securityver=2
|
||||
_updatever=0
|
||||
_securityver=1
|
||||
_updatever=1
|
||||
pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
|
||||
pkgrel=2
|
||||
pkgrel=1
|
||||
pkgdesc="Java OpenJFX ${_majorver} client application platform (open-source implementation of JavaFX)"
|
||||
arch=(x86_64)
|
||||
url=https://wiki.openjdk.java.net/display/OpenJFX/Main
|
||||
|
|
@ -56,9 +56,9 @@ source=(
|
|||
java-openjfx-no-xlocale.patch
|
||||
java-openjfx-gstreamer-lite-gcc10-compat.patch
|
||||
)
|
||||
sha256sums=('4ed624e2a0c464526af50fae3115bca34357bc5d3bbe6e4bb608994dd9094a10'
|
||||
sha256sums=('c6b481516ea50819d42607bdd3d744692e843eba93bcf1a64e16b2900c538164'
|
||||
'2622aa35d733cc69f4421f1cd053bf425e89f93141cb52c9f016a9b425fc0cb6'
|
||||
'e76f202e8163a9a6e02138987bfc344a66f70aa30b8b699c6bdb41eec31c1465'
|
||||
'af52cd9fb252770b6886eef2720ca4b6c582f3719f8a28128c498681b457233c'
|
||||
'220c63396561867a6d07ae81b6390160d8f91502587e4873998e3b7a83793a1c'
|
||||
'd7f9db86854b1cb8ab973c2ff255e51a637b9c24af30144182202d33f01a9434')
|
||||
|
||||
|
|
|
|||
|
|
@ -20,22 +20,21 @@ index 7a7cbc72..6705a0f3 100644
|
|||
"-fno-strict-aliasing", "-fPIC", "-fno-omit-frame-pointer", // optimization flags
|
||||
"-fstack-protector",
|
||||
+ "-Wno-error=cast-function-type",
|
||||
"-Wextra", "-Wall", "-Wformat-security", "-Wno-unused", "-Wno-parentheses", "-Werror=implicit-function-declaration", "-Werror=trampolines"] // warning flags
|
||||
"-Wextra", "-Wall", "-Wformat-security", "-Wno-unused", "-Wno-parentheses", "-Werror=trampolines"] // warning flags
|
||||
|
||||
+commonFlags.addAll(System.getenv("CFLAGS").trim().split(" "))
|
||||
+
|
||||
if (!IS_64) {
|
||||
commonFlags += "-m32"
|
||||
}
|
||||
@@ -61,6 +64,8 @@ def linkFlags = ["-static-libgcc", "-static-libstdc++", "-shared", commonFlags,
|
||||
"-z", "relro",
|
||||
"-Wl,--gc-sections"].flatten()
|
||||
|
||||
@@ -70,6 +70,7 @@
|
||||
def staticLinkFlags = [].flatten()
|
||||
|
||||
def linkFlags = IS_STATIC_BUILD ? staticLinkFlags : dynamicLinkFlags;
|
||||
+linkFlags.addAll(System.getenv("LDFLAGS").trim().split(" "))
|
||||
+
|
||||
|
||||
if (IS_DEBUG_NATIVE) {
|
||||
linkFlags += "-g"
|
||||
}
|
||||
@@ -294,7 +299,7 @@ LINUX.iio.nativeSource = [
|
||||
LINUX.iio.compiler = compiler
|
||||
LINUX.iio.ccFlags = [ccFlags].flatten()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue