mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
556 B
Bash
23 lines
556 B
Bash
# $Id: PKGBUILD,v 1.3 2003/11/06 08:27:17 dorphell Exp
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Paul Mattal <pjmattal@elys.com>
|
|
|
|
pkgname=hexedit
|
|
pkgver=1.2.12
|
|
pkgrel=2
|
|
pkgdesc="Hexedit Hex Editor for Linux"
|
|
arch=(i686 x86_64)
|
|
url="http://merd.net/pixel/hexedit.html"
|
|
license=('GPL')
|
|
depends=('glibc' 'ncurses')
|
|
source=(http://merd.net/pixel/$pkgname-$pkgver.src.tgz)
|
|
md5sums=('0d2f48610006278cd93359fea9a06d5c')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname
|
|
./configure
|
|
make || return 1
|
|
make prefix=$startdir/pkg/usr install || return 1
|
|
}
|
|
|
|
|