You are not logged in.
Pages: 1
I can't make it install in the pkg dir, it builds just fine... any ideas?
# Contributor: Javier «Phrodo_00» Aravena <Phrodo.00@gmail.com>
pkgname=steptalk
_realname=StepTalk
pkgver=0.10.0
pkgrel=1
pkgdesc="official GNUstep scripting framework"
arch=('i686')
url="http://www.gnustep.org/experience/StepTalk.html"
license=('GPL')
depends=('gnustep-base' 'gnustep-gui')
source=("ftp://ftp.gnustep.org/pub/gnustep/libs/${_realname}-${pkgver}.tar.gz")
md5sums=('50b2dca2948ac825aba226f953864259')
build() {
cd "$srcdir/$_realname"
source /etc/profile.d/GNUstep.sh
make || return 1
make DESTDIR="$pkgdir" install||return 1
}
# vim:set ts=2 sw=2 et:
Offline
it probably doesn't use the DESTDIR variable. Check the Makefile to see what variable it uses instead.
Offline
Pages: 1