Date: Thursday, January 4, 2018 @ 22:55:02
Author: bpiotrowski
Revision: 278697
archrelease: copy trunk to community-staging-x86_64
Added:
mit-scheme/repos/community-staging-x86_64/
mit-scheme/repos/community-staging-x86_64/PKGBUILD
(from rev 278696, mit-scheme/trunk/PKGBUILD)
----------+
PKGBUILD | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
Copied: mit-scheme/repos/community-staging-x86_64/PKGBUILD (from rev 278696,
mit-scheme/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2018-01-04 22:55:02 UTC (rev 278697)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Alad Wenter <[email protected]>
+# Contributor: Bartłomiej Piotrowski <[email protected]>
+# Contributor: peter feigl <[email protected]>
+
+pkgname=mit-scheme
+pkgver=9.2
+pkgrel=2
+pkgdesc='MIT/GNU Scheme'
+url='http://www.gnu.org/software/mit-scheme/'
+arch=('x86_64')
+license=('GPL')
+depends=('glibc' 'ncurses' 'zlib')
+optdepends=('openssl: support for openssl')
+source_x86_64=("https://ftp.gnu.org/gnu/mit-scheme/stable.pkg/$pkgver/$pkgname-$pkgver-x86-64.tar.gz"
+
"https://ftp.gnu.org/gnu/mit-scheme/stable.pkg/$pkgver/$pkgname-$pkgver-x86-64.tar.gz.sig")
+validpgpkeys=('424626C56C4AA9DB11194C07E3AA82D81B352C01') # Chris Hanson
<[email protected]>
+# https://ftp.gnu.org/gnu/mit-scheme/stable.pkg/9.2/md5sums.txt
+md5sums_x86_64=('9fcc6c156e53efeb0560996551fa0a57'
+ 'SKIP')
+
+build() {
+ cd "$pkgname-$pkgver"/src
+ ./configure --prefix=/usr \
+ --with-x \
+ --enable-native-code
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"/src
+ make DESTDIR="$pkgdir" install
+}