mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
18 lines
499 B
Bash
18 lines
499 B
Bash
# Maintainer: Fabian Kosmale <0inkane@googlemail.com>
|
|
pkgname=fpc-src
|
|
pkgver=2.6.2
|
|
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=('89c7e60db6280f3d5cc006a4a9ff43a9')
|
|
|
|
build() {
|
|
cd $srcdir/fpcbuild-$pkgver/fpcsrc
|
|
mkdir -p $pkgdir/usr/lib/fpc/src
|
|
cp -R . $pkgdir/usr/lib/fpc/src
|
|
}
|