contrib/tcc/Pkgfile

27 lines
718 B
Plaintext
Raw Normal View History

2007-01-13 06:30:07 +01:00
# Description: Tiny C Compiler
# URL: http://fabrice.bellard.free.fr/tcc/
2008-03-05 04:22:35 +01:00
# Maintainer: Thomas Penteker, tek at serverop dot de
2007-01-20 03:21:06 +01:00
# Packager: James Mills, prologic at shortcircuit dot net dot au
2007-01-13 06:30:07 +01:00
# Depends on:
name=tcc
2009-10-20 19:17:28 +02:00
version=0.9.25
2007-01-13 06:30:07 +01:00
release=1
2008-04-02 21:32:11 +02:00
source=(http://download.savannah.nongnu.org/releases/tinycc/$name-$version.tar.bz2)
2007-01-13 06:30:07 +01:00
build() {
cd $name-$version
./configure --prefix=/usr
make CFLAGS="$CFLAGS"
make prefix=$PKG/usr \
bindir=$PKG/usr/bin \
tccdir=$PKG/usr/lib/tcc \
libdir=$PKG/usr/lib \
includedir=$PKG/usr/include \
mandir=$PKG/usr/man \
docdir=$PKG/usr/share/tcc/doc \
install
chmod 644 $PKG/usr/man/man1/tcc.1
rm -rf $PKG/usr/share
}