1
0
forked from ports/contrib

re2: initial commit, version 2020-06-01

This commit is contained in:
Tim Biermann 2020-06-07 15:53:55 +00:00
parent d8dbfbe4c7
commit 73e78d208a
3 changed files with 34 additions and 0 deletions

14
re2/.footprint Normal file
View File

@ -0,0 +1,14 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/re2/
-rw-r--r-- root/root usr/include/re2/filtered_re2.h
-rw-r--r-- root/root usr/include/re2/re2.h
-rw-r--r-- root/root usr/include/re2/set.h
-rw-r--r-- root/root usr/include/re2/stringpiece.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libre2.a
lrwxrwxrwx root/root usr/lib/libre2.so -> libre2.so.7.0.0
lrwxrwxrwx root/root usr/lib/libre2.so.7 -> libre2.so.7.0.0
-rwxr-xr-x root/root usr/lib/libre2.so.7.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/re2.pc

5
re2/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/hMKWSpCRRObC5FK1dmizbrrV5RXvWre9pJuKbG1Qs7aYziYl+s/HusS5EmhTiCy/2kt83Qe26pGkCIZxsQRg8=
SHA256 (Pkgfile) = f169342e7973b4b453420df36c8bca139d0199e2793d4fe03866a619da8cf5e3
SHA256 (.footprint) = ce48f80f887021c50a5cbc0a8fe1f156ffdd9e09e4bfdfb40bcb9204c6bdc8a3
SHA256 (re2-2020-06-01.tar.gz) = fb8e0f4ed7a212e3420507f27933ef5a8c01aec70e5148c6a35313573269fae6

15
re2/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: Fast, safe, thread-friendly regular expression engine
# URL: https://github.com/google/re2
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=re2
version=2020-06-01
release=1
source=(https://github.com/google/re2/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
make
make prefix=/usr DESTDIR=$PKG install
}