diff options
Diffstat (limited to 'community/smalltalk/PKGBUILD')
-rw-r--r-- | community/smalltalk/PKGBUILD | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/community/smalltalk/PKGBUILD b/community/smalltalk/PKGBUILD index 9473d4a0b..3a838ca95 100644 --- a/community/smalltalk/PKGBUILD +++ b/community/smalltalk/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 88644 2013-04-20 23:03:17Z arodseth $ +# $Id: PKGBUILD 99989 2013-10-31 02:52:02Z allan $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Kaiting Chen <kaitocracy@gmail.com> # Contributor: mrshpot <mrshpot at gmail dot com> @@ -6,14 +6,14 @@ pkgname=smalltalk pkgver=3.2.5 -pkgrel=1 +pkgrel=2 pkgdesc='Implementation of Smalltalk-80' url='http://smalltalk.gnu.org/' license=('GPL' 'LGPL') arch=('i686' 'x86_64' 'mips64el') -options=('!libtool' '!emptydirs') +options=('!emptydirs' 'staticlibs') depends=('gmp' 'libffi' 'libsigsegv' 'readline' 'libltdl') -makedepends=('gdbm' 'gtk2' 'sqlite' 'tk>=8.6' 'zip') +makedepends=('gdbm' 'gtk2' 'sqlite' 'tk' 'zip') install="$pkgname.install" source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz") sha256sums=('06e574e818ec49f0555d948ae53b1453d8c1df59ef597dad911a4fd1ffba1cce') @@ -23,7 +23,7 @@ optdepends=('tk: for gst-blox' 'gtk2: GUI toolkit') build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" ./configure \ --prefix=/usr \ @@ -42,13 +42,13 @@ build() { } check() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" - #make check + make check || return 1 } package() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install |