re2c: initial commit, version 1.3

This commit is contained in:
Tim Biermann 2020-06-07 16:00:28 +00:00
parent 73e78d208a
commit 7138504542
3 changed files with 32 additions and 0 deletions

10
re2c/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/re2c
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/re2c.1.gz
drwxr-xr-x root/root usr/share/re2c/
drwxr-xr-x root/root usr/share/re2c/stdlib/
-rw-r--r-- root/root usr/share/re2c/stdlib/unicode_categories.re

5
re2c/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39GJ2bB19QHQztRazvxDYxsCilvM7pQW6bU7xR81KUltXZxoEihSfn5atiKD3G82FsH72Kon5o6a1n8Gf4cIcg0=
SHA256 (Pkgfile) = 21f9303badb94d3b466b3d6da0cbdada5b6aad238eaa5a2dc58a52c29770edd9
SHA256 (.footprint) = 84b4475bdacab31820bdd9bf4ca7879ec501a9deae657b472a19e1ef224f3d6f
SHA256 (re2c-1.3.tar.gz) = 81d63a1b10af4b4cc676afaa0367caf12c23ad8750c10da149d5ac3cf5229023

17
re2c/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: A tool for generating C-based recognizers from regular expressions
# URL: https://re2c.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=re2c
version=1.3
release=1
source=(https://github.com/skvadrik/re2c/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}