blob: e352faf92562ff9516f44914c688c49c5b3d79fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $Id: PKGBUILD 65363 2012-02-21 02:22:10Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: tyr0 <thomas.hoernes@gmx.at>
pkgname=vbindiff
pkgver=3.0_beta4
pkgrel=3
pkgdesc="displays files in hexadecimal and ASCII (or EBCDIC) and highlight the differences between them"
arch=('i686' 'x86_64')
url="http://www.cjmweb.net/vbindiff/"
license=('GPL')
depends=('gcc-libs' 'ncurses')
source=($url/$pkgname-$pkgver.tar.gz)
md5sums=('dbda80ef580e1a0975ef50b9aaa5210e')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=$pkgdir/usr
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make install
}
|