contrib/tcc/Pkgfile

28 lines
745 B
Plaintext
Raw Normal View History

2007-01-13 06:30:07 +01:00
# Description: Tiny C Compiler
2014-09-18 11:38:51 +02:00
# URL: http://bellard.org/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
2014-05-13 09:27:28 +02:00
version=0.9.26
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 \
2014-09-22 00:21:56 +02:00
infodir=$PKG/usr/share/tcc/info \
2007-01-13 06:30:07 +01:00
install
chmod 644 $PKG/usr/man/man1/tcc.1
rm -rf $PKG/usr/share
}