Search Criteria
Package Details: ori-git r941.bcba89d-1
Git Clone URL: | https://aur.archlinux.org/ori-git.git (read-only) |
---|---|
Package Base: | ori-git |
Description: | Peer-to-peer distributed file system with history |
Upstream URL: | http://ori.scs.stanford.edu/ |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | mazieres |
Maintainer: | rpodgorny |
Last Packager: | rpodgorny |
Votes: | 6 |
Popularity: | 0.000000 |
First Submitted: | 2013-08-17 06:54 |
Last Updated: | 2015-06-14 19:53 |
Dependencies (5)
- fuse (fuse2)
- libevent (libevent-git, libevent-fb)
- boost (make)
- git (git-git) (make)
- scons (make)
Latest Comments
Harvie commented on 2017-10-13 19:54
scons: Reading SConscript files ...
File "/tmp/yaourt-tmp-harvie/aur-ori-git/src/ori-git/SConstruct", line 98
print "Error unsupported hash algorithm"
^
SyntaxError: Missing parentheses in call to 'print'
rpodgorny commented on 2015-01-13 18:02
adopted and updated
rpodgorny commented on 2015-01-13 12:14
see https://raw.githubusercontent.com/rpodgorny/pkgbuilds/master/ori-git/PKGBUILD for the lastest version.
tempel's suggestions included...
rpodgorny commented on 2015-01-13 11:13
please update or orphan, thank you...
cmatheson commented on 2014-01-17 21:38
@tindzk: pkg-config is in base-devel.
tindzk commented on 2014-01-17 19:23
The dependency pkg-config is missing.
Tempel commented on 2014-01-09 17:07
The SConstruct now supports separate PREFIX and DESTDIR options (see https://bitbucket.org/orifs/ori/pull-request/1/improve-the-buildsystem-to-simplify/diff ). The PKGBUILD should now use PREFIX="/usr" and DESTDIR="$pkgdir".
mokasin commented on 2014-01-08 22:27
You could simplify the PKGBUILD by using Pacman's VCS capabilites:
pkgname=ori-git
pkgrel=1
pkgver=0.0.0
pkgdesc="Peer-to-peer distributed file system with history"
arch=(i686 x86_64)
url="http://ori.scs.stanford.edu/"
license=('MIT')
depends=(libevent fuse)
makedepends=(git scons boost)
provides=(ori)
conflicts=(ori)
source=("$pkgname"::'git+http://bitbucket.org/orifs/ori.git')
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
git describe --long | sed -E 's/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$pkgname"
scons
}
package() {
cd "$srcdir/$pkgname"
scons PREFIX="$pkgdir/usr" install
}
See https://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
mokasin commented on 2014-01-08 22:18
You could just do something like
source=('$pkgname::git+http://bitbucket.org/orifs/ori.git')
md5sums=()
build() {
cd "$srcdir/$pkgname"
scons
}
package() {
cd "$srcdir/$pkgname"
scons PREFIX="$pkgdir/usr" install
}
See https://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines