summaryrefslogtreecommitdiff
path: root/extra/hexedit/PKGBUILD
blob: 431407a3d5a30a1d2c8fc85671925be6c2eafb14 (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
26
27
28
# $Id: PKGBUILD 179485 2013-03-05 16:24:22Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Paul Mattal <pjmattal@elys.com>

pkgname=hexedit
pkgver=1.2.13
pkgrel=1
pkgdesc="Hex Editor for Linux"
arch=('i686' 'x86_64')
url="http://rigaux.org/hexedit.html"
license=('GPL')
depends=('ncurses')
source=("http://rigaux.org/${pkgname}-${pkgver}.src.tgz")
md5sums=('a5af1378d028512a9cad27a5ba3e15f9')

build() {
  cd "${srcdir}/${pkgname}"
  CFLAGS="$CFLAGS -Wall"

  ./configure
  make
}

package() {
  cd "${srcdir}/${pkgname}"

  make prefix="${pkgdir}/usr" install
}