libestr: initial import, version 0.1.10

This commit is contained in:
Matt Housh 2018-10-31 20:09:12 -05:00
parent 087bbfc60b
commit ab1c3d80f0
3 changed files with 31 additions and 0 deletions

11
libestr/.footprint Normal file
View File

@ -0,0 +1,11 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/libestr.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libestr.a
-rwxr-xr-x root/root usr/lib/libestr.la
lrwxrwxrwx root/root usr/lib/libestr.so -> libestr.so.0.0.0
lrwxrwxrwx root/root usr/lib/libestr.so.0 -> libestr.so.0.0.0
-rwxr-xr-x root/root usr/lib/libestr.so.0.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libestr.pc

5
libestr/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/RDkmsKLMLrPMwKyVLE5fzHd2d3FXO7htvcsdnxZakEsWRh309GuHKc4uvKuf0TlNx5YjvMowIZ6BEyT99wi0Q8=
SHA256 (Pkgfile) = 037acadd0e970169fab3697c7cbcb7f231d33af7765a7dbc49ff6154b9e09938
SHA256 (.footprint) = a0541d71707a3093e00e065ca42a816b6b2e57e521a92eb72f591a3607be4040
SHA256 (libestr-0.1.10.tar.gz) = bd655e126e750edd18544b88eb1568d200a424a0c23f665eb14bbece07ac703c

15
libestr/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: some essentials for string handling (and a bit more)
# URL: http://libestr.adiscon.com/
# Maintainer: Matt Housh, jaeger at crux dot ninja
name=libestr
version=0.1.10
release=1
source=(http://libestr.adiscon.com/files/download/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}