summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/automake
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/automake')
-rw-r--r--abs/core-testing/automake/PKGBUILD25
-rw-r--r--abs/core-testing/automake/automake.install20
2 files changed, 0 insertions, 45 deletions
diff --git a/abs/core-testing/automake/PKGBUILD b/abs/core-testing/automake/PKGBUILD
deleted file mode 100644
index 0b3a6f2..0000000
--- a/abs/core-testing/automake/PKGBUILD
+++ /dev/null
@@ -1,25 +0,0 @@
-# $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.11.1
-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' 'autoconf>=2.60')
-install=automake.install
-source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
-
-build() {
- cd ${srcdir}/${pkgname}-${pkgver}
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR=${pkgdir} install || return 1
-
- rm -f ${pkgdir}/usr/share/info/dir
-}
-md5sums=('4ee7f0ff5f0e467d58b6bd5da96b1c74')
diff --git a/abs/core-testing/automake/automake.install b/abs/core-testing/automake/automake.install
deleted file mode 100644
index a1030e5..0000000
--- a/abs/core-testing/automake/automake.install
+++ /dev/null
@@ -1,20 +0,0 @@
-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: