mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
17 lines
445 B
Bash
17 lines
445 B
Bash
pkgname=fpc-src
|
|
pkgver=2.6.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=('17375e665a4e1311f85812fe2754f609')
|
|
|
|
build() {
|
|
cd $srcdir/fpcbuild-$pkgver/fpcsrc
|
|
mkdir -p $pkgdir/usr/lib/fpc/src
|
|
cp -R . $pkgdir/usr/lib/fpc/src
|
|
}
|