summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 40ec023ba21214459886e2e9b3f11b790ca8fdc9 (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
# Maintainer:  Rod Kay              <charlie5 on #ada at freenode.net>
# Contributor: Sietse van der Molen <sietse@vdmolen.eu>

pkgname=florist
pkgver=2021
pkgrel=1
pkgdesc="An open-source implementation of IEEE Standard 1003.5b-1996, the POSIX Ada binding."

arch=('any')
url="https://github.com/Blady-Com/florist"
license=('GPL3')

depends=('gcc-ada')
options=(staticlibs !strip)

source=('git+https://github.com/Blady-Com/florist.git')
sha1sums=(SKIP)


build() 
{
  cd "$srcdir/$pkgname"

  ./configure --prefix=$pkgdir/usr
  PROCESSORS="$(nproc)" make
}


package() 
{
  cd "$srcdir/$pkgname"

  make DESTDIR="$pkgdir/" install
}