mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 22:37:13 +08:00
17 lines
445 B
Bash
17 lines
445 B
Bash
|
pkgname=fpc-src
|
||
|
pkgver=2.4.0
|
||
|
pkgrel=1
|
||
|
pkgdesc='Sources for the FreePascal compiler (required by the Lazarus IDE)'
|
||
|
url='http://www.freepascal.org/'
|
||
|
license=('GPL')
|
||
|
arch=('any')
|
||
|
options=('!strip')
|
||
|
source=(ftp://ftp.freepascal.org/pub/fpc/dist/$pkgver/source/fpcbuild-$pkgver.tar.gz)
|
||
|
md5sums=('af49e9a8bb632f361395add30ece8934')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/fpcbuild-$pkgver/fpcsrc
|
||
|
mkdir -p $pkgdir/usr/lib/fpc/src
|
||
|
cp -R . $pkgdir/usr/lib/fpc/src
|
||
|
}
|