blob: eac5c9b6f25233584f22884b8c83ace34a71888d (
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
|
# Contributor: John Vogel <jvogel4@stny.rr.com>
# Maintainer: John Vogel <jvogel4@stny.rr.com>
pkgname=reflex
pkgver=20241231
pkgrel=0
pkgdesc="variant of flex with relocalization"
url="https://invisible-island.net/reflex/reflex.html"
arch="all"
license="BSD-3-Clause-LBNL" # not quite right, but seems closest in wording to COPYING
makedepends="byacc"
subpackages="$pkgname-dev $pkgname-doc"
source="https://invisible-island.net/archives/reflex/reflex-$pkgver.tgz"
builddir="$srcdir/reflex-$pkgver"
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
1e511a64b4a9eec1d7a987d0cb7726cc61277bcc45180d5537a0a17e67929f63547ec978b839e44e44029477b6d45bba8e3c3452c17e1cf80e3adf3dfdd12e13 reflex-20241231.tgz
"
|