Date: Wednesday, May 13, 2015 @ 22:02:02 Author: arodseth Revision: 133382
Name change that reflects the recent changes Package name change that reflects the recent changes to MooseFS Added: moosefs/ moosefs/repos/ moosefs/repos/community-i686/ moosefs/repos/community-x86_64/ moosefs/trunk/ moosefs/trunk/PKGBUILD moosefs/trunk/moosefs.install -----------------+ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ moosefs.install | 11 +++++++++++ 2 files changed, 49 insertions(+) Added: moosefs/trunk/PKGBUILD =================================================================== --- moosefs/trunk/PKGBUILD (rev 0) +++ moosefs/trunk/PKGBUILD 2015-05-13 20:02:02 UTC (rev 133382) @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $ +# Maintainer: Alexander Rødseth <[email protected]> + +pkgname=moosefs +pkgver=2.0.67_1 +pkgrel=1 +pkgdesc='High performing and fault tolerant distributed file system' +url='http://moosefs.com/' +replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client') +conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client') +arch=('x86_64' 'i686') +license=('GPL3') +depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs') +install="$pkgname.install" +source=("http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz") +sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4') + +build() { + cd "moosefs-${pkgver%_*}" + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --with-default-user=mfs \ + --with-default-group=mfs \ + --with-systemdsystemunitdir=/usr/lib/systemd/system \ + --sbindir=/usr/bin + make +} + +package() { + make DESTDIR="$pkgdir" -C "moosefs-${pkgver%_*}" install +} + +# getver: -u 4 moosefs.com/download/sources.html +# vim:set ts=2 sw=2 et: Added: moosefs/trunk/moosefs.install =================================================================== --- moosefs/trunk/moosefs.install (rev 0) +++ moosefs/trunk/moosefs.install 2015-05-13 20:02:02 UTC (rev 133382) @@ -0,0 +1,11 @@ +post_install() { + echo + echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs can' + echo 'be used as a basis for writing the corresponding .cfg files.' + echo + echo 'For troubleshooting a service, like "mfschunkserver", just running' + echo '"/usr/bin/mfschunkserver start" can be helpful.' + echo +} + +# vim:set ts=2 sw=2 et:
