diff options
Diffstat (limited to 'community/smalltalk/PKGBUILD')
-rw-r--r-- | community/smalltalk/PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/community/smalltalk/PKGBUILD b/community/smalltalk/PKGBUILD index bb391cece..0c96a1a2f 100644 --- a/community/smalltalk/PKGBUILD +++ b/community/smalltalk/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 43064 2011-03-23 21:53:14Z kchen $ +# $Id: PKGBUILD 54483 2011-08-18 15:08:42Z bluewind $ # Maintainer: 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=1 +pkgrel=2 pkgdesc='A free implementation of Smalltalk-80 by the GNU project' url='http://smalltalk.gnu.org/' license=('GPL' 'LGPL') @@ -30,7 +30,11 @@ build() { --with-readline \ --with-tcl --with-tk \ --with-x --without-emacs - make; make DESTDIR="$pkgdir" install + make +} +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="$pkgdir" install # fix manpage symlink rm -f $pkgdir/usr/share/man/man1/gst-reload.1 |