mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
27 lines
737 B
Bash
27 lines
737 B
Bash
# Contributor: Dave Pernu <u.owned@gmail.com>
|
|
# Maintainer: Firmicus <firmicus ατ gmx δοτ net>
|
|
|
|
pkgname=apparix
|
|
pkgver=08.331
|
|
_ver="08-331"
|
|
pkgrel=1
|
|
pkgdesc="Command line file browser with bookmark support"
|
|
arch=('i686' 'x86_64')
|
|
url="http://micans.org/apparix/"
|
|
license=('GPL2')
|
|
depends=('bash')
|
|
options=('!docs' 'zipman')
|
|
source=(http://micans.org/$pkgname/src/$pkgname-$_ver.tar.gz apparix.sh)
|
|
md5sums=('0d7c9a2efecf5c7b44d2ce7c5844e5de'
|
|
'70b984f427572f72e3475fd176c91d16')
|
|
|
|
build()
|
|
{
|
|
cd ${srcdir}/$pkgname-$_ver
|
|
./configure --prefix=/usr --mandir=/usr/share/man
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
mkdir -p ${pkgdir}/etc/profile.d/
|
|
install -m755 ${srcdir}/apparix.sh ${pkgdir}/etc/profile.d/
|
|
}
|