diff options
Diffstat (limited to 'community/smalltalk/PKGBUILD')
-rw-r--r-- | community/smalltalk/PKGBUILD | 46 |
1 files changed, 26 insertions, 20 deletions
diff --git a/community/smalltalk/PKGBUILD b/community/smalltalk/PKGBUILD index fd95362ad..70016c238 100644 --- a/community/smalltalk/PKGBUILD +++ b/community/smalltalk/PKGBUILD @@ -1,54 +1,60 @@ -# $Id: PKGBUILD 68673 2012-03-31 10:11:37Z rvanharen $ -# Maintainer: Kaiting Chen <kaitocracy@gmail.com> +# $Id: PKGBUILD 69236 2012-04-10 21:23:38Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Kaiting Chen <kaitocracy@gmail.com> # Contributor: mrshpot <mrshpot at gmail dot com> # Contributor: Michael Fellinger <m.fellinger@gmail.com> pkgname=smalltalk pkgver=3.2.4 -pkgrel=5 -pkgdesc='A free implementation of Smalltalk-80 by the GNU project' +pkgrel=6 +pkgdesc='Implementation of Smalltalk-80' url='http://smalltalk.gnu.org/' license=('GPL' 'LGPL') -arch=('i686' 'x86_64') +arch=('x86_64' 'i686') options=('!libtool' '!emptydirs') - depends=('gmp' 'libffi' 'libsigsegv' 'readline' 'libltdl') -makedepends=('gdbm' 'gtk2' 'sqlite3' 'tk' 'zip') -optdepends=('tk: for gst-blox' - 'sqlite3' - 'sed: for examples' - 'gtk2') +makedepends=('gdbm' 'gtk2' 'sqlite' 'tk' 'zip') install=smalltalk.install source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('a36a7c9beddca08dc492b500738efc82') +sha256sums=('901cc7090a1fa44bc60900a970d207de4aa3bdfdce72bea55114e243bc1eb1b3') +optdepends=('tk: for gst-blox' + 'sqlite: database in a file' + 'sed: for examples' + 'gtk2: GUI toolkit') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr \ + ./configure \ + --prefix=/usr \ --libexecdir=/usr/lib/smalltalk \ --with-imagedir=/var/lib/smalltalk \ --enable-gtk=yes \ --with-system-libffi \ --with-system-libsigsegv \ --with-readline \ - --with-tcl --with-tk \ - --with-x --without-emacs + --with-tcl \ + --with-tk \ + --with-x \ + --without-emacs make } check() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" # make check } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install # fix manpage symlink - rm -f $pkgdir/usr/share/man/man1/gst-reload.1 - ln -s gst-load.1 $pkgdir/usr/share/man/man1/gst-reload.1 + rm -f "$pkgdir/usr/share/man/man1/gst-reload.1" + ln -s gst-load.1 "$pkgdir/usr/share/man/man1/gst-reload.1" } + +# vim:set ts=2 sw=2 et: |