Date: Friday, December 25, 2020 @ 21:03:51 Author: arodseth Revision: 791003
archrelease: copy trunk to community-x86_64 Added: gauche/repos/community-x86_64/PKGBUILD (from rev 791002, gauche/trunk/PKGBUILD) Deleted: gauche/repos/community-x86_64/PKGBUILD ----------+ PKGBUILD | 65 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 33 insertions(+), 32 deletions(-) Deleted: PKGBUILD =================================================================== --- PKGBUILD 2020-12-25 21:03:45 UTC (rev 791002) +++ PKGBUILD 2020-12-25 21:03:51 UTC (rev 791003) @@ -1,32 +0,0 @@ -# Maintainer: Alexander F. Rødseth <xypr...@archlinux.org> -# Contributor: Stefan Husmann <stefan-husm...@t-online.de> -# Contributor: Motohiro Ueki <ueki....@gmail.com> -# Contributor: nkoizu <nko...@gmail.com> - -pkgname=gauche -pkgver=0.9.9 -pkgrel=1 -url='https://practical-scheme.net/gauche/' -pkgdesc='R7RS Scheme implementation (includes gosh)' -depends=(libatomic_ops slib) -license=(BSD) -arch=(x86_64) -source=("https://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz") -sha256sums=('4ca9325322a7efadb9680d156eb7b53521321c9ca4955c4cbe738bc2e1d7f7fb') - -build() { - cd "Gauche-$pkgver" - - ./configure --enable-multibyte=utf-8 --prefix=/usr - make -} - -package() { - cd "Gauche-$pkgver" - - make DESTDIR="$pkgdir" install-pkg install-doc - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" -} - -# getver: practical-scheme.net/gauche/gmemo/index.cgi?ReleaseNotes -# vim: ts=2 sw=2 et: Copied: gauche/repos/community-x86_64/PKGBUILD (from rev 791002, gauche/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2020-12-25 21:03:51 UTC (rev 791003) @@ -0,0 +1,33 @@ +# Maintainer: Alexander F. Rødseth <xypr...@archlinux.org> +# Contributor: Stefan Husmann <stefan-husm...@t-online.de> +# Contributor: Motohiro Ueki <ueki....@gmail.com> +# Contributor: nkoizu <nko...@gmail.com> + +pkgname=gauche +pkgver=0.9.10 +pkgrel=1 +url='https://practical-scheme.net/gauche/' +pkgdesc='R7RS Scheme implementation (includes gosh)' +depends=(libatomic_ops libxcrypt slib) +makedepends=(autoconf gauche git) +license=(BSD) +arch=(x86_64) +# gauche tag: release0_9_10 +source=("git+https://github.com/shirok/Gauche#commit=d028d2e291957b066572aae4a76dbd7a75a528d7") +sha256sums=('SKIP') + +build() { + cd Gauche + export BUILD_GOSH=/usr/bin/gosh + ./DIST gen + ./configure --prefix=/usr --with-slib=/usr/share/slib + make +} + +package() { + cd Gauche + make DESTDIR="$pkgdir" install-pkg install-doc + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" +} + +# getver: practical-scheme.net/gauche/gmemo/index.cgi?ReleaseNotes