summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter2019-03-25 08:31:06 +0100
committerPeter2019-03-25 08:31:06 +0100
commit4b20404925ff9afc982b5ccd6a2059fb0f7bc5f6 (patch)
treeea7b1178758e53b614f9def82f822a1e811cf0c1
parent3df5ee202f4a45ccee8e11739879f3bebf11b88a (diff)
downloadaur-4b20404925ff9afc982b5ccd6a2059fb0f7bc5f6.tar.gz
fixes according to aur comments
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD12
2 files changed, 7 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 226720321420..98f5c2d6c53f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = chez-scheme-git
pkgdesc = Chez Scheme is an implementation of the Revised6 Report on Scheme (R6RS) with numerous language and programming environment extensions. (threaded build)
pkgver = 9.5.r65.gd8c2704
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/cisco/ChezScheme
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index eb78e6bec201..919f0fbd8fcb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=chez-scheme-git
_pkgname=ChezScheme
pkgver=9.5.r65.gd8c2704
-pkgrel=2
+pkgrel=3
pkgdesc="Chez Scheme is an implementation of the Revised6 Report on Scheme (R6RS) with numerous language and programming environment extensions. (threaded build)"
arch=(i686 x86_64)
url="https://github.com/cisco/ChezScheme"
@@ -44,11 +44,11 @@ build() {
package() {
make -C "$_pkgname" DESTDIR="$pkgdir"/ install InstallSchemeName=chez-scheme
- install "$_pkgname/ta6le/boot/ta6le/kernel.o" "$pkgdir/usr/lib/csv9.5.1/ta6le/kernel.o"
- install "$_pkgname/ta6le/boot/ta6le/scheme.h" "$pkgdir/usr/lib/csv9.5.1/ta6le/scheme.h"
- # symlink includes pkgdir, redo
- rm "$pkgdir/usr/lib/csv9.5.1/ta6le/scheme-script.boot"
- ln -s "/usr/lib/csv9.5.1/ta6le/scheme.boot" "$pkgdir/usr/lib/csv9.5.1/ta6le/scheme-script.boot"
+ # Replace duplicated files with symlinks
+ cd "$pkgdir"/usr/lib/csv*/ta6le
+ rm chez-scheme.boot scheme-script.boot
+ ln -s scheme.boot chez-scheme.boot
+ ln -s scheme.boot scheme-script.boot
}
# vim:set ts=2 sw=2 et: