mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
519 B
Bash
20 lines
519 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: Jaroslaw Swierczynski <swiergot@juvepoland.com>
|
|
|
|
pkgname=shfs-utils
|
|
pkgver=0.35
|
|
pkgrel=2
|
|
pkgdesc="SHell FileSystem Linux utils"
|
|
url="http://shfs.sourceforge.net/"
|
|
license=('GPL')
|
|
arch=('i686')
|
|
depends=('glibc' 'openssh')
|
|
source=(http://downloads.sourceforge.net/sourceforge/shfs/shfs-$pkgver.tar.gz)
|
|
md5sums=('016f49d71bc32eee2b5d11fc1600cfbe')
|
|
|
|
build() {
|
|
cd $startdir/src/shfs-$pkgver
|
|
|
|
make utils || return 1
|
|
make ROOT=$startdir/pkg utils-install
|
|
}
|