blob: d1bf2c1f2d8b672b8ce9a892333af3fe95ee1eb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
description="A tool for automatically generating Makefiles."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukuc AT upyum DOT com>"
url="http://www.gnu.org/software/automake/"
depends=(gawk perl autoconf)
name=automake
version=1.11.1
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
build ()
{
cd $name-$version;
./configure \
${CHOST:+--build=${CHOST}} \
${CTARGET:+--host=${CTARGET}} \
--prefix=$prefix \
--mandir=$mandir;
make;
make DESTDIR=$PKG install;
# FIXME: À gérer avec les « use »...
#rm -r $PKG/usr/share/{info,doc};
#rm $PKG/usr/share/automake-*/texinfo.tex
}
|