Package Details: ocaml-pcre 7.5.0-3

Git Clone URL: https://aur.archlinux.org/ocaml-pcre.git (read-only, click to copy)
Package Base: ocaml-pcre
Description: Perl compatible regular expressions for OCaml
Upstream URL: http://mmottl.github.io/pcre-ocaml
Keywords: ocaml pcre perl regexp
Licenses: custom:LGPL2.1 with linking exception
Conflicts: pcre-ocaml
Provides: pcre-ocaml
Replaces: pcre-ocaml
Submitter: None
Maintainer: fungible
Last Packager: fungible
Votes: 74
Popularity: 0.000000
First Submitted: 2011-09-17 10:16 (UTC)
Last Updated: 2022-11-14 05:12 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

oriba commented on 2014-01-06 17:26 (UTC)

Get pcre-ocaml-7.0.4.tar.gz (83.0 KB). 2013-12-16 https://bitbucket.org/mmottl/pcre-ocaml

oriba commented on 2014-01-05 22:56 (UTC)

If staticlibs-option is, what you want to add, then it would be this line, that is needed: options=('!strip' 'staticlibs')

leonardder commented on 2013-12-06 22:41 (UTC)

Could you please put ocaml in the makedepends array? According to namcap, ocaml isn't a runtime dependency.

xaocon commented on 2013-11-04 23:55 (UTC)

should have staticlibs option enabled.

<deleted-account> commented on 2012-05-26 15:43 (UTC)

The paths in 'build' and 'package' still refer to the 'release' part of the name, so the build just fails with cd complaining about no such file or directory.

<deleted-account> commented on 2012-05-26 14:08 (UTC)

Thanks, PKGBUILD updated!

<deleted-account> commented on 2012-05-26 04:01 (UTC)

Author's source tarball seems to have moved. This seems to let it build for me: --- PKGBUILD.orig 2012-05-25 20:58:39.190988600 -0700 +++ PKGBUILD 2012-05-25 21:00:08.718966472 -0700 @@ -11,17 +11,17 @@ makedepends=('ocaml-findlib') replaces=('pcre-ocaml') conflicts=('pcre-ocaml') -source=(http://hg.ocaml.info/release/pcre-ocaml/archive/release-$pkgver.tar.bz2) -sha256sums=('7c999e2cd9bccd815682eee155ad76e78c99d790f855b1ce562ddd54ae803d72') +source=(https://bitbucket.org/mmottl/pcre-ocaml/downloads/pcre-ocaml-$pkgver.tar.gz) +sha256sums=('f1774028a4525d22d1f4cf4ce0121c99d85a75aed7a498c3e8ab0f5e39888e47') options=(!strip) build() { - cd "$srcdir/pcre-ocaml-release-$pkgver" + cd "$srcdir/pcre-ocaml-$pkgver" make all htdoc } package() { - cd "$srcdir/pcre-ocaml-release-$pkgver" + cd "$srcdir/pcre-ocaml-$pkgver" export OCAMLFIND_DESTDIR="$pkgdir$(ocamlfind printconf destdir)" install -dm 755 "$OCAMLFIND_DESTDIR/stublibs" make install