2011-04-17 06:29:38 +08:00
|
|
|
pkgname=guile
|
2011-04-17 07:23:22 +08:00
|
|
|
pkgver=1.8.8
|
2013-03-23 10:47:59 +08:00
|
|
|
pkgrel=3
|
|
|
|
pkgdesc="GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system"
|
2011-04-17 06:29:38 +08:00
|
|
|
url="http://www.gnu.org/software/guile/"
|
2013-03-23 10:47:59 +08:00
|
|
|
arch=('x86_64')
|
2011-04-17 06:29:38 +08:00
|
|
|
license=('GPL')
|
2013-03-23 10:47:59 +08:00
|
|
|
depends=('gmp' 'libltdl' 'ncurses>=5.7' 'texinfo')
|
2011-04-17 06:29:38 +08:00
|
|
|
install=guile.install
|
2013-03-23 10:47:59 +08:00
|
|
|
source=("ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
2011-04-17 07:23:22 +08:00
|
|
|
options=('!libtool')
|
|
|
|
md5sums=('18661a8fdfef13e2fcb7651720aa53f3')
|
2011-04-17 06:29:38 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2013-03-23 10:47:59 +08:00
|
|
|
|
2011-04-17 07:23:22 +08:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-static \
|
|
|
|
--disable-error-on-warning
|
|
|
|
make LDFLAGS+="-lpthread"
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2013-03-23 10:47:59 +08:00
|
|
|
|
2011-04-17 07:23:22 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
2011-04-17 06:29:38 +08:00
|
|
|
}
|