diff options
author | Bob Igo <bob@stormlogic.com> | 2009-01-17 17:54:02 (GMT) |
---|---|---|
committer | Bob Igo <bob@stormlogic.com> | 2009-01-17 17:54:02 (GMT) |
commit | 100e02faeb525e8f697b0c8c6bc4a3eb2179c8b3 (patch) | |
tree | 720dc08fc5feddfd8934ecdcd79fdd703922956e /abs/extra-testing/automake | |
parent | 18b8c17f24b9cd6d9600b212cbd615deb69fe500 (diff) | |
parent | cff24d02505081b7297a257c38edcf286772e015 (diff) | |
download | linhes_pkgbuild-100e02faeb525e8f697b0c8c6bc4a3eb2179c8b3.zip linhes_pkgbuild-100e02faeb525e8f697b0c8c6bc4a3eb2179c8b3.tar.gz linhes_pkgbuild-100e02faeb525e8f697b0c8c6bc4a3eb2179c8b3.tar.bz2 |
Merge branch 'master' of ssh://igo@knoppmyth.net/mount/repository/LinHES-PKGBUILD
Diffstat (limited to 'abs/extra-testing/automake')
-rw-r--r-- | abs/extra-testing/automake/PKGBUILD | 25 | ||||
-rw-r--r-- | abs/extra-testing/automake/automake.install | 20 |
2 files changed, 45 insertions, 0 deletions
diff --git a/abs/extra-testing/automake/PKGBUILD b/abs/extra-testing/automake/PKGBUILD new file mode 100644 index 0000000..2943f44 --- /dev/null +++ b/abs/extra-testing/automake/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 19545 2008-11-26 18:00:03Z andyrtr $ +# Contributor: judd <jvinet@zeroflux.org> +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +pkgname=automake +pkgver=1.10.2 +pkgrel=1 +pkgdesc="A GNU tool for automatically creating Makefiles" +arch=(i686 x86_64) +license=('GPL') +url="http://www.gnu.org/software/automake" +groups=('base-devel') +depends=('perl' 'bash' 'texinfo') +install=automake.install +source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('ede3e08c696861a01f4d2c6a2e822053') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${pkgdir} install || return 1 + + rm -f ${pkgdir}/usr/share/info/dir +} diff --git a/abs/extra-testing/automake/automake.install b/abs/extra-testing/automake/automake.install new file mode 100644 index 0000000..a1030e5 --- /dev/null +++ b/abs/extra-testing/automake/automake.install @@ -0,0 +1,20 @@ +infodir=/usr/share/info +filelist=(automake.info automake.info-1 automake.info-2) + +post_install() { + for file in ${filelist[@]}; do + install-info $infodir/$file $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + for file in ${filelist[@]}; do + install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} + +# vim:set ts=2 sw=2 et: |