PKGBUILDs/extra/lxsplit/PKGBUILD

22 lines
666 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 26538 2009-02-08 23:14:14Z eric $
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=lxsplit
pkgver=0.2.4
pkgrel=1
pkgdesc="Command-line file splitter/joiner compatible with any HJSplit version"
arch=('i686' 'x86_64')
url="http://lxsplit.sourceforge.net/"
license=('GPL')
depends=('glibc')
#source=(http://www.freebyte.com/download/$pkgname.tar.gz)
source=(http://downloads.sourceforge.net/sourceforge/lxsplit/lxsplit-${pkgver}.tar.gz)
md5sums=('ed21a08c167c08d4d81c820782947cb1')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
install -d ${pkgdir}/usr/bin
make || return 1
make INSTALL_PATH=${pkgdir}/usr/bin install || return 1
}