libunibreak: New port, fbreader dependency

This commit is contained in:
Predrag Ivanović 2018-02-17 20:15:36 +01:00
parent 108fe1b000
commit e4bd32697e
4 changed files with 38 additions and 0 deletions

15
libunibreak/.footprint Normal file
View File

@ -0,0 +1,15 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/graphemebreak.h
-rw-r--r-- root/root usr/include/linebreak.h
-rw-r--r-- root/root usr/include/linebreakdef.h
-rw-r--r-- root/root usr/include/unibreakbase.h
-rw-r--r-- root/root usr/include/unibreakdef.h
-rw-r--r-- root/root usr/include/wordbreak.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libunibreak.la
lrwxrwxrwx root/root usr/lib/libunibreak.so -> libunibreak.so.3.1.0
lrwxrwxrwx root/root usr/lib/libunibreak.so.3 -> libunibreak.so.3.1.0
-rwxr-xr-x root/root usr/lib/libunibreak.so.3.1.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libunibreak.pc

1
libunibreak/.md5sum Normal file
View File

@ -0,0 +1 @@
2536fc358b085a2d62ee554bd7a82c88 libunibreak-4.0.tar.gz

5
libunibreak/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37yaCws9juPJzwezXdqQxPThRAMrh0VQSztp7G0emlgdI4jaqgHqpg5+AF0CnP+qO0S8cEl6YQ+mXgjvxva5YQo=
SHA256 (Pkgfile) = a42ac7d399a12fe4dabbe0cab48c1a9062a4ce3b29f777d72874fcd442fa612f
SHA256 (.footprint) = 3107b956840f642e38ca9dec3ca7e87ac3c4fe7e6a8c31ac27a5ccdc52dcf61c
SHA256 (libunibreak-4.0.tar.gz) = f7329bef1eb169d3363f040cefcc323cfd0a0bc53290a35a395e1d1adc849539

17
libunibreak/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: An implementation of the line breaking algorithm.
# URL: https://github.com/adah1972/libunibreak/
# Maintainer: Pedja, predivan at mts dot rs
# Depends on:
name=libunibreak
version=4.0
release=1
source=(https://github.com/adah1972/$name/releases/download/"$name"_${version//./_}/$name-$version.tar.gz)
build () {
cd $name-$version
./configure --prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
}