commit ab1c3d80f05c58ba536a171b89cbaee718058180 Author: Matt Housh <jaeger@crux.ninja> Date: Wed Oct 31 20:09:12 2018 -0500 libestr: initial import, version 0.1.10 diff --git a/libestr/.footprint b/libestr/.footprint new file mode 100644 index 000000000..c5fbd3e81 --- /dev/null +++ b/libestr/.footprint @@ -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 diff --git a/libestr/.signature b/libestr/.signature new file mode 100644 index 000000000..608c334c6 --- /dev/null +++ b/libestr/.signature @@ -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 diff --git a/libestr/Pkgfile b/libestr/Pkgfile new file mode 100644 index 000000000..1d2213827 --- /dev/null +++ b/libestr/Pkgfile @@ -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 +}