Search Criteria
Package Details: ocaml-calendar 2.04-1
Git Clone URL: | https://aur.archlinux.org/ocaml-calendar.git (read-only) |
---|---|
Package Base: | ocaml-calendar |
Description: | OCaml library managing dates and times |
Upstream URL: | http://calendar.forge.ocamlcore.org |
Licenses: | |
Submitter: | None |
Maintainer: | oriba |
Last Packager: | oriba |
Votes: | 5 |
Popularity: | 0.000000 |
First Submitted: | 2009-10-02 01:36 |
Last Updated: | 2015-06-09 22:50 |
Latest Comments
oriba commented on 2014-06-17 22:50
OK, I had a too-paranoid umask for AUR, when creating the src-package.
Now the changed package has been accepted.
unforgiven512, thank you for your corrections.
(I may remove the chmod-stuff in later PKGBUILDS, because that was not the problem.)
oriba commented on 2014-06-08 00:30
...hmhh... strange, AUR is so picky.
oriba commented on 2014-06-08 00:11
..but I needed to add a chmod, and so I added a variable again.
Should work now.
oriba commented on 2014-06-07 23:58
Thanks for the fix, unforgiven512.
I didn't even knew it was broken.
unforgiven512 commented on 2014-06-07 22:44
Updated PKGBUILD to fix build issue (in package() function)
https://gist.github.com/unforgiven512/f9f8261d353b354c4d7e
Changes were minimal.
oriba commented on 2013-07-01 21:34
package release 3 for 2.03.2: only minor changes in PKGBUILD.
Update for users not needed.
Anonymous comment on 2011-09-12 10:31
Updated to 2.03.1: http://pastebin.com/FJhbYBs2
thatch45 commented on 2011-01-02 03:15
Updated for changes in findlib, fixed the findlib META file
thatch45 commented on 2011-01-02 02:28
This PKGBUILD doesn't build, also there are conflicts building packages against it, please use this PKGBUILD instead:
pkgname=ocaml-calendar
pkgver=2.01.1
pkgrel=2
pkgdesc="OCaml library managing dates and times"
arch=('i686' 'x86_64')
url="http://forge.ocamlcore.org/forum/forum.php?forum_id=293"
license=('LGPL')
depends=('ocaml' 'ocaml-findlib')
source=(http://forge.ocamlcore.org/frs/download.php/173/calendar-$pkgver.tar.gz)
md5sums=('a30974a97f718688198c5a5dc6235cff')
options=()
build() {
cd "$srcdir/calendar-$pkgver"
./configure --prefix=/usr
OCAMLFIND_DESTDIR=$pkgdir$(ocamlfind printconf destdir)
mkdir -p $OCAMLFIND_DESTDIR || return 1
make || return 1
make OCAMLFIND_DESTDIR=$OCAMLFIND_DESTDIR install || return 1
install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
# Fix the broken META file
sed -i 's/calendarLib.cmo\ //' $OCAMLFIND_DESTDIR/calendar/META
sed -i 's/calendarLib.cmx\ //' $OCAMLFIND_DESTDIR/calendar/META
}
thatch45 commented on 2010-12-13 06:03
Can you remove the install=() line from your PKGBUILD? It is causing the build to fail.