mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-14 03:19:02 +08:00
27 lines
700 B
Bash
27 lines
700 B
Bash
|
# $Id: PKGBUILD 66438 2010-01-31 09:01:56Z allan $
|
||
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
||
|
# Contributor: judd <jvinet@zeroflux.org>
|
||
|
|
||
|
# NOTE: requires rebuilt with each new gcc version
|
||
|
|
||
|
pkgname=libtool
|
||
|
pkgver=2.2.6b
|
||
|
pkgrel=2
|
||
|
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.gz)
|
||
|
md5sums=('07da460450490148c6d2df0f21481a25')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|