2011-02-24 12:17:13 +01:00
|
|
|
# Template file for 'pcc-libs'
|
|
|
|
pkgname=pcc-libs
|
2011-02-24 16:42:23 +01:00
|
|
|
_distver=1.0.0.BETA
|
|
|
|
_datever=20110224
|
|
|
|
version=${_distver}
|
|
|
|
wrksrc=${pkgname}-${version}
|
|
|
|
distfiles="http://pcc.ludd.ltu.se/ftp/pub/pcc-beta/$pkgname-${_distver}-${_datever}.tgz"
|
2011-02-24 13:20:48 +01:00
|
|
|
build_style=custom-install
|
2011-02-24 12:17:13 +01:00
|
|
|
short_desc="Portable C Compiler - Support Libraries"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-02-24 16:42:23 +01:00
|
|
|
checksum=7047b7e869dbaaf8fd777b9116df97aee3184dff1eab0366a976b782a6950e4e
|
2011-02-24 12:17:13 +01:00
|
|
|
long_desc="
|
|
|
|
The compiler is based on the original Portable C Compiler by S. C. Johnson,
|
|
|
|
written in the late 70's. About 50% of the frontend code and 80% of the
|
|
|
|
backend code has been rewritten.
|
|
|
|
|
|
|
|
This package includes some required object files for PCC to work."
|
|
|
|
|
|
|
|
Add_dependency run glibc
|
|
|
|
Add_dependency build flex
|
2011-02-24 13:20:48 +01:00
|
|
|
|
|
|
|
do_build()
|
|
|
|
{
|
|
|
|
# Force gcc compiler.
|
|
|
|
env CC=gcc ./configure --prefix=/usr
|
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
|
|
|
make DESTDIR=${DESTDIR} install
|
|
|
|
}
|