# Description: A command line Copmponent Pascal Compiler # URL: https://deadsoftware.ru # Maintainer: DeaDDooMER, deaddoomer@deadsoftware.ru name=cpc-32 version=0.1 release=1 source=(https://deadsoftware.ru/projects/cpc/release/cpc-v${version}.src.tar.gz) build() { cd bootstrap-src ./make-stage0c.sh ./make-stage1.sh ./make-stage2.sh install -d $PKG/usr/bin install -D -m755 stage2/i486/{cpc486,cpl486,cpfront} $PKG/usr/bin/ ln -s cpc486 $PKG/usr/bin/cpc ln -s cpl486 $PKG/usr/bin/cpl install -d $PKG/usr/share/man/man1 install -D -m644 man/cp{c,l}.1 $PKG/usr/share/man/man1 ln -s cpc.1.gz $PKG/usr/share/man/man1/cpc486.1.gz ln -s cpc.1.gz $PKG/usr/share/man/man1/cpfront.1.gz ln -s cpl.1.gz $PKG/usr/share/man/man1/cpl486.1.gz install -d $PKG/usr/share/cpfront/C install -D -m644 C/SYSTEM.{c,h} $PKG/usr/share/cpfront/C }