From 7a65a910b77ad191d69881098c47f9b0c852d92e Mon Sep 17 00:00:00 2001 From: root Date: Tue, 13 Aug 2013 01:33:19 -0700 Subject: Tue Aug 13 01:31:08 PDT 2013 --- community/shake/PKGBUILD | 31 +++++++++++++++++++++++++++++++ community/shake/shake.install | 7 +++++++ 2 files changed, 38 insertions(+) create mode 100644 community/shake/PKGBUILD create mode 100644 community/shake/shake.install (limited to 'community/shake') diff --git a/community/shake/PKGBUILD b/community/shake/PKGBUILD new file mode 100644 index 000000000..55336da5f --- /dev/null +++ b/community/shake/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 67776 2012-03-14 11:42:05Z giovanni $ +# Maintainer : Jaroslav Lichtblau +# Contributor : Allan McRae +# Contributor: Julien MISCHKOWITZ + +pkgname=shake +pkgver=0.999 +pkgrel=2 +pkgdesc="Userspace defragmenter that can be run while system is in use" +arch=('i686' 'x86_64') +url="http://vleu.net/shake/" +license=('GPL3') +depends=('attr') +makedepends=('cmake' 'help2man') +install=$pkgname.install +source=(http://download.savannah.nongnu.org/releases/$pkgname/$pkgname-$pkgver.tar.bz2) +sha256sums=('f030d5ba5d4d2d449249c49b253a71de8c342b9b2f5e1e7d3e7ba5277e3f5e91') + +build() { + cd ${srcdir}/${pkgname}-fs-${pkgver}/build + + cmake -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr .. + make +} + +package() { + cd ${srcdir}/${pkgname}-fs-${pkgver}/build + + make DESTDIR=${pkgdir} install +} diff --git a/community/shake/shake.install b/community/shake/shake.install new file mode 100644 index 000000000..0ca53862b --- /dev/null +++ b/community/shake/shake.install @@ -0,0 +1,7 @@ +post_install() { + echo "==> shake works faster if you mount your partions with the \"user_xattr\" option" +} + +post_upgrade() { + post_install +} -- cgit v1.2.3-54-g00ecf