core/guile/PKGBUILD

28 lines
699 B
Bash
Raw Normal View History

pkgname=guile
2011-04-17 07:23:22 +08:00
pkgver=1.8.8
pkgrel=3
pkgdesc="GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system"
url="http://www.gnu.org/software/guile/"
arch=('x86_64')
license=('GPL')
depends=('gmp' 'libltdl' 'ncurses>=5.7' 'texinfo')
install=guile.install
source=("ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz")
2011-04-17 07:23:22 +08:00
options=('!libtool')
md5sums=('18661a8fdfef13e2fcb7651720aa53f3')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
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}"
2011-04-17 07:23:22 +08:00
make DESTDIR="${pkgdir}" install
}