Package Details: hop 1:3.1.0-6

Git Clone URL: https://aur.archlinux.org/hop.git (read-only, click to copy)
Package Base: hop
Description: Software Development Kit for the Web
Upstream URL: http://hop.inria.fr
Licenses: GPL, LGPL
Conflicts: hop
Provides: hop
Submitter: None
Maintainer: None
Last Packager: haawda
Votes: 5
Popularity: 0.000000
First Submitted: 2007-12-17 08:50 (UTC)
Last Updated: 2020-04-10 20:38 (UTC)

Latest Comments

haawda commented on 2018-09-18 08:52 (UTC)

Not sure if my last claim is still valid. This was built with bigloo 4.3c. The Version in [extra] is flagged out of date for Long and two Versions behind upstream.

haawda commented on 2014-03-10 10:38 (UTC)

Update. Needs bigloo-devel to build. Will also work if bigloo from [extra] is on 4.1.

nitralime commented on 2011-01-21 20:05 (UTC)

The following PKGBUILD works with the latest version: ----------------------------------------------------- pkgname=hop pkgver=2.2.0 pkgrel=1 pkgdesc="a Software Development Kit for the Web" arch=(i686 x86_64) license=('GPL' 'LGPL') depends=('bigloo>=3.6a') makedepends=('bigloo>=3.6a') install=hop.install url='http://hop.inria.fr' source=(ftp://ftp-sop.inria.fr/mimosa/fp/Hop/${pkgname}-${pkgver}.tar.gz hop) md5sums=('5b7bde6eddee3d26db6ee34a051575a3' 'c01ff06ad4faca90e6da4a2ee9b8e533') build() { cd $startdir/src/${pkgname}-${pkgver} ./configure --prefix=/usr --etcdir=/etc/hop make || return 1 make DESTDIR=$startdir/pkg install (cd $startdir/pkg/usr/bin; rm hop; ln -s hop-$pkgver hop) } ----------------------------------------------------- In oder to not change "hop.install" I have created the missing directory /var/lib/hop by hand.

masm commented on 2010-11-19 10:53 (UTC)

The following PKGBUILD works with the latest version. I just updated pkgver and md5sums. # Contributor: Manuel Serrano <Manuel.Serrano@inria.fr> pkgname=hop pkgver=2.1.2 pkgrel=1 pkgdesc="a Software Development Kit for the Web" arch=(i686 x86_64) license=('GPL' 'LGPL') depends=('bigloo>=3.4a') makedepends=('bigloo>=3.4a') install=hop.install url='http://hop.inria.fr' source=(ftp://ftp-sop.inria.fr/mimosa/fp/Hop/$pkgname-$pkgver.tar.gz hop) md5sums=('25727feb7ae90b8792f5f90aa1762117' 'c01ff06ad4faca90e6da4a2ee9b8e533') build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --etcdir=/etc/hop make || return 1 make DESTDIR=$startdir/pkg install (cd $startdir/pkg/usr/bin; rm hop; ln -s hop-$pkgver hop) }

masm commented on 2010-08-30 09:47 (UTC)

The following PKGBUILD works with the latest version. # Contributor: Manuel Serrano <Manuel.Serrano@inria.fr> pkgname=hop pkgver=2.1.1 pkgrel=1 pkgdesc="a Software Development Kit for the Web" arch=(i686 x86_64) license=('GPL' 'LGPL') depends=('bigloo>=3.4a') makedepends=('bigloo>=3.4a') install=hop.install url='http://hop.inria.fr' source=(ftp://ftp-sop.inria.fr/mimosa/fp/Hop/$pkgname-$pkgver.tar.gz hop) md5sums=('d7fc356cba24b607df30a282e64931b2' 'c01ff06ad4faca90e6da4a2ee9b8e533') build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --etcdir=/etc/hop make || return 1 make DESTDIR=$startdir/pkg install (cd $startdir/pkg/usr/bin; rm hop; ln -s hop-$pkgver hop) }

masm commented on 2010-07-11 11:05 (UTC)

The following PKGBUILD works with the latest bigloo. I just updated pkgver and md5sums. # Contributor: Manuel Serrano <Manuel.Serrano@inria.fr> pkgname=hop pkgver=2.1.0 pkgrel=1 pkgdesc="a Software Development Kit for the Web" arch=(i686 x86_64) license=('GPL' 'LGPL') depends=('bigloo>=3.3a') makedepends=('bigloo>=3.3a') install=hop.install url='http://hop.inria.fr' source=(ftp://ftp-sop.inria.fr/mimosa/fp/Hop/$pkgname-$pkgver.tar.gz hop) md5sums=('f03271de19bbca482b3624748ab5e6d4' 'c01ff06ad4faca90e6da4a2ee9b8e533') build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --etcdir=/etc/hop make || return 1 make DESTDIR=$startdir/pkg install (cd $startdir/pkg/usr/bin; rm hop; ln -s hop-$pkgver hop) }