blob: 44591ac6fbbb7a0e1c5baa2e8fb4efaaa537533f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Contributor: L <alaviss 0 at gmail dot com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Valeriy Lyasotskiy <onestep@ukr.net>
# Contributor: Jan Willemson <janwil@hot.ee>
# Contributor: Hugo Ideler <hugoideler@dse.nl>
# Contributor: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
# Original PKGBUILD: Andre Naumann <anaumann@SPARCed.org>
# See http://bbs.archlinux.org/viewtopic.php?t=9318&highlight=fpc
pkgname='fpc-src-svn'
pkgver=3.3.1.r11549.01220442
_pkgver="${pkgver%.r*}"
_commit="${pkgver##*.}"
pkgrel=1
arch=('i486' 'i686' 'pentium4' 'x86_64')
url='http://www.freepascal.org/'
license=('GPL' 'LGPL' 'custom')
depends=()
makedepends=('git')
pkgdesc='Sources for the Free Pascal Compiler (required by the Lazarus IDE)'
options=('!strip')
conflicts=('fpc-src')
provides=("fpc-src=${pkgver}")
source=('git+https://gitlab.com/freepascal.org/fpc/source.git#commit='"${_commit}")
sha512sums=('SKIP')
pkgver() {
cd "${srcdir}"/source
last_version=$(
git tag \
| grep '^[0-9.]\+$' \
| sort -V \
| tail -n1
)
_commit=$(
git rev-parse "${_commit}" \
| cut -c1-8
)
revision=$(
git rev-list --count "${_commit}" "^${last_version}"
)
printf '%s.r%s.%s' \
"${last_version}" \
"${revision}" \
"${_commit}"
}
package() {
install -dm755 "${pkgdir}"/usr/lib/fpc/src
mv "${srcdir}"/source/* "${pkgdir}"/usr/lib/fpc/src/
}
|