diff options
author | Tim Biermann <tbier@posteo.de> | 2020-06-14 21:09:13 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-06-15 09:44:01 +0000 |
commit | 3b58b3633d1d075dd690d9263397feaa5d946c23 (patch) | |
tree | 79a23e04ca4887d0ba700d272c4f4df4f2312e94 /fstrcmp | |
parent | 8b388fce66562e4fcf81585cc07ba4a9e0f4910a (diff) | |
download | contrib-3b58b3633d1d075dd690d9263397feaa5d946c23.tar.gz contrib-3b58b3633d1d075dd690d9263397feaa5d946c23.tar.xz |
fstrcmp: initial commit, version 0.7.D001
Diffstat (limited to 'fstrcmp')
-rw-r--r-- | fstrcmp/.footprint | 29 | ||||
-rw-r--r-- | fstrcmp/.signature | 5 | ||||
-rw-r--r-- | fstrcmp/Pkgfile | 17 |
3 files changed, 51 insertions, 0 deletions
diff --git a/fstrcmp/.footprint b/fstrcmp/.footprint new file mode 100644 index 000000000..f1240a293 --- /dev/null +++ b/fstrcmp/.footprint @@ -0,0 +1,29 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/fstrcmp +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/fstrcmp.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libfstrcmp.a +-rw-r--r-- root/root usr/lib/libfstrcmp.la +lrwxrwxrwx root/root usr/lib/libfstrcmp.so -> libfstrcmp.so.0.6.0 +lrwxrwxrwx root/root usr/lib/libfstrcmp.so.0 -> libfstrcmp.so.0.6.0 +-rw-r--r-- root/root usr/lib/libfstrcmp.so.0.6.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/fstrcmp.pc +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/fstrcmp.1.gz +-rw-r--r-- root/root usr/share/man/man1/fstrcmp_license.1.gz +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/fmemcmp.3.gz +-rw-r--r-- root/root usr/share/man/man3/fmemcmpi.3.gz +-rw-r--r-- root/root usr/share/man/man3/fstrcasecmp.3.gz +-rw-r--r-- root/root usr/share/man/man3/fstrcasecmpi.3.gz +-rw-r--r-- root/root usr/share/man/man3/fstrcmp.3.gz +-rw-r--r-- root/root usr/share/man/man3/fstrcmpi.3.gz +-rw-r--r-- root/root usr/share/man/man3/fstrcoll.3.gz +-rw-r--r-- root/root usr/share/man/man3/fstrcolli.3.gz +-rw-r--r-- root/root usr/share/man/man3/fwcscmp.3.gz +-rw-r--r-- root/root usr/share/man/man3/fwcscmpi.3.gz diff --git a/fstrcmp/.signature b/fstrcmp/.signature new file mode 100644 index 000000000..93da8a18b --- /dev/null +++ b/fstrcmp/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF38QztEecVpCIcNEUzdXu9lZ52MQ+kITepD09Tr9F3JdtsOqVdzWnQyyhC69JepAUC6UEmkhCa9rJVzDsTsemHwQ= +SHA256 (Pkgfile) = adbebea8c15d1cfd65a46325ac742056aedcd242f423a69650e2a8a71e169638 +SHA256 (.footprint) = a3e1bee71ad94d7f2eecfb8097d3634c5586a399658fbc3618a56f5363208d9d +SHA256 (fstrcmp-0.7.D001.tar.gz) = e4018e850f80700acee8da296e56e15b1eef711ab15157e542e7d7e1237c3476 diff --git a/fstrcmp/Pkgfile b/fstrcmp/Pkgfile new file mode 100644 index 000000000..ea8e76f82 --- /dev/null +++ b/fstrcmp/Pkgfile @@ -0,0 +1,17 @@ +# Description: a library that is used to make fuzzy comparisons of strings and byte arrays, including multi-byte character strings +# URL: http://fstrcmp.sourceforge.net/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: ghostscript + +name=fstrcmp +version=0.7.D001 +release=1 +source=(http://fstrcmp.sourceforge.net/fstrcmp-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + rm -fr $PKG/usr/share/doc +} |