39 lines
935 B
Bash
39 lines
935 B
Bash
# Template file for 'oniguruma'
|
|
pkgname=oniguruma
|
|
version=6.9.1
|
|
revision=1
|
|
wrksrc="onig-${version}"
|
|
build_style=gnu-configure
|
|
short_desc="A multi-charset regular expressions library"
|
|
maintainer="John Regan <john@jrjrtech.com>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/kkos/oniguruma"
|
|
distfiles="https://github.com/kkos/oniguruma/releases/download/v${version}/onig-${version}.tar.gz"
|
|
checksum=c7c3feb7be45a5cc9f2dec239b4a317a422e6ffea299cf91ffab1b926633ea12
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
oniguruma-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/bin/onig-config
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|
|
|
|
oniguruma-doc_package() {
|
|
archs=noarch
|
|
short_desc+=" - documentation"
|
|
pkg_install() {
|
|
vmkdir usr/share/doc/${sourcepkg}
|
|
vcopy "doc/*" usr/share/doc/${sourcepkg}
|
|
}
|
|
}
|
|
|