diff options
Diffstat (limited to 'testing/libtool/PKGBUILD')
-rw-r--r-- | testing/libtool/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/libtool/PKGBUILD b/testing/libtool/PKGBUILD new file mode 100644 index 000000000..44e629e1e --- /dev/null +++ b/testing/libtool/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 116987 2011-03-27 06:40:02Z allan $ +# Maintainer: Allan McRae <allan@archlinux.org> +# Contributor: judd <jvinet@zeroflux.org> + +# NOTE: requires rebuilt with each new gcc version + +pkgname=libtool +pkgver=2.4 +pkgrel=3 +pkgdesc="A generic library support script" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/libtool" +license=('GPL') +depends=('sh' 'tar' 'texinfo') +groups=('base-devel') +options=('!libtool') +install=libtool.install +source=(ftp://ftp.gnu.org/pub/gnu/libtool/${pkgname}-${pkgver}.tar.xz) +md5sums=('4e6144439d95d7332dc50ace6dd24c55') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} |