mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
618 B
Bash
26 lines
618 B
Bash
|
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
|
||
|
|
||
|
pkgname=bashdb
|
||
|
pkgver=4.0_0.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="A debugger for Bash scripts loosely modeled on the gdb command syntax"
|
||
|
arch=('any')
|
||
|
url="http://bashdb.sourceforge.net/"
|
||
|
license=('GPL')
|
||
|
depends=('bash')
|
||
|
install=$pkgname.install
|
||
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-4.0-0.3.tar.bz2)
|
||
|
md5sums=('720b7d4cd55c2a2010c6a2de59565f42')
|
||
|
|
||
|
build() {
|
||
|
cd $pkgname-${pkgver//_/-}
|
||
|
|
||
|
./configure --prefix=/usr --disable-static
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
|
||
|
rm -f "$pkgdir"/usr/share/info/dir
|
||
|
}
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|