libutf8proc: stop moving headers to subdirectory.

This was done in 4099097381, likely
because netsurf includes utf8proc headers as <libutf8proc/utf8proc.h>
rather than <utf8proc.h>, as other applications do. Unfortunately, this
also made it so any application using utf8proc also had to be passed
custom CFLAGS, because the pkg-config file specified the include dir to
be /usr/include rather than /usr/include/libutf8proc.

Since a move to JuliaLang's utf8proc is likely, modernizing the package
ahead of that change also makes sense.
This commit is contained in:
Érico Nogueira 2021-06-27 03:42:32 -03:00
parent b3f8c17e26
commit 07e9866649

View file

@ -1,7 +1,7 @@
# Template file for 'libutf8proc'
pkgname=libutf8proc
version=2.4.0
revision=1
revision=2
build_style=cmake
configure_args="-DBUILD_SHARED_LIBS=ON"
hostmakedepends="pkg-config perl netsurf-buildsystem"
@ -17,10 +17,6 @@ post_install() {
sed "s|@VERSION@|${version}|" \
${FILESDIR}/libutf8proc.pc.in > ${DESTDIR}/usr/lib/pkgconfig/libutf8proc.pc
# Fix headers
vmkdir usr/include/libutf8proc
mv ${DESTDIR}/usr/include/utf8proc.h ${DESTDIR}/usr/include/libutf8proc/
vlicense LICENSE.md
}