mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
666 B
Bash
21 lines
666 B
Bash
# $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
|
|
}
|