summaryrefslogtreecommitdiff
path: root/community/hexedit/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
commit65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch)
treefbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /community/hexedit/PKGBUILD
parentd53c44f055929b18d7d1b25f8367ee5836c435fc (diff)
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'community/hexedit/PKGBUILD')
-rw-r--r--community/hexedit/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/hexedit/PKGBUILD b/community/hexedit/PKGBUILD
new file mode 100644
index 000000000..5ae5bc508
--- /dev/null
+++ b/community/hexedit/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 102214 2013-12-06 14:31:06Z 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
+}