Date: Tuesday, November 15, 2022 @ 13:16:50
Author: foutrelis
Revision: 461709
archrelease: copy trunk to testing-x86_64
Added:
guile/repos/testing-x86_64/
guile/repos/testing-x86_64/PKGBUILD
(from rev 461708, guile/trunk/PKGBUILD)
guile/repos/testing-x86_64/keys/
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: guile/repos/testing-x86_64/PKGBUILD (from rev 461708,
guile/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-11-15 13:16:50 UTC (rev 461709)
@@ -0,0 +1,38 @@
+# Contributor: Jan de Groot <[email protected]>
+# Contributor: Bartłomiej Piotrowski <[email protected]>
+# Contributor: Tom Newsom <[email protected]>
+
+pkgname=guile
+pkgver=3.0.8
+pkgrel=3
+pkgdesc='Portable, embeddable Scheme implementation written in C'
+url='https://www.gnu.org/software/guile/'
+arch=(x86_64)
+license=(GPL)
+depends=(gmp ncurses libunistring gc libffi libxcrypt)
+makedepends=(texinfo)
+source=(https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
+validpgpkeys=('3CE464558A84FDC69DB40CFB090B11993D9AEBB5' # Ludovic Courtès
<[email protected]>
+ 'FF478FB264DE32EC296725A3DDC0F5358812F8F2' # Andy Wingo
+ '4FD4D288D445934E0A14F9A5A8803732E4436885') # Andy Wingo
<[email protected]>"
+sha256sums=('f25ae0c26e911af1b5005292d4f56621879f74d6958b30741cf67d8b6feb2016'
+ 'SKIP')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr \
+ --disable-static \
+ --disable-error-on-warning
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+ make check
+}
+
+package() {
+ make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+ rm "$pkgdir"/usr/lib/libguile-3.?.so.*-gdb.scm
+}