summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorsoloturn2021-02-02 06:31:08 +0100
committersoloturn2021-02-02 06:31:08 +0100
commitba3f1b318338c4f25839126e85c054948bfc96fd (patch)
treea1d0b0cc3c4393e963fea7b3d48d6bb90b8a849d /PKGBUILD
parentacd53713494021bd0527a89da7a16d17b6b02ab7 (diff)
downloadaur-ba3f1b318338c4f25839126e85c054948bfc96fd.tar.gz
not strip binaries, fanjiang contributor
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD12
1 files changed, 7 insertions, 5 deletions
diff --git a/PKGBUILD b/PKGBUILD
index f4aaa826270d..a6149019dcfb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,9 +2,11 @@
# Contributor: Theo Tosini <theo.tosini@theoduino.me>
# Contributor: Gábor Sebestyén <segabor@gmail.com>
# Contributor: Andrew Sun <adsun701@gmail.com>
+# Contributor: fanjiang <prof.fan@foxmail.com>
+
pkgname=swift-language-git
-pkgver=swift.DEVELOPMENT.SNAPSHOT.2020.12.23.a.r21.g949b0c0cc36
+pkgver=swift.DEVELOPMENT.SNAPSHOT.2021.01.27.a.r1529.gd1c7a00cc8f
pkgrel=1
pkgdesc="The Swift programming language, taken directly from the Apple repository"
arch=('x86_64')
@@ -65,12 +67,12 @@ md5sums=(
)
-# By default makepkg runs strip on binaries. This seems to cause issues with the Swift REPL.
-# Disable it in the PKGBUILD with:
-# from https://github.com/RLovelett/swift-aur/blob/master/PKGBUILD, not sure if necessary
+# By default makepkg runs strip on binaries. This causes issues with the Swift REPL.
+# from https://github.com/RLovelett/swift-aur/blob/master/PKGBUILD
# termux had no trouble up to now, strip all executables and shared objects:
# https://github.com/termux/termux-packages/blob/master/scripts/build/termux_step_massage.sh#L24
-#options=(!strip)
+# would be cool to not strip only the ones which really are necessary, but how?
+options=(!strip)
prepare () {
( cd swift && patch -p1 -i "$srcdir/0001-arch-aur-pachtes.patch" )