diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/ht | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/ht')
-rw-r--r-- | community/ht/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/ht/PKGBUILD b/community/ht/PKGBUILD new file mode 100644 index 000000000..4b8a33501 --- /dev/null +++ b/community/ht/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 83652 2013-02-04 10:01:08Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: tardo <tardo@nagi-fanboi.net> +# Contributor: Simon Morgan <"mra84964@mra.pb.hx".decode('rot-13')> + +pkgname=ht +pkgver=2.0.21 +pkgrel=1 +pkgdesc="A file editor/viewer/analyzer for executables" +arch=('i686' 'x86_64') +url="http://hte.sourceforge.net/" +license=('GPL') +depends=('gcc-libs' 'ncurses' 'lzo2') +source=(http://downloads.sourceforge.net/sourceforge/hte/$pkgname-$pkgver.tar.gz) +md5sums=('419a25004421b9455430f523636bdcca') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --disable-x11-textmode --enable-release --prefix=/usr + make + make DESTDIR=$pkgdir install + + # avoid TeX conflict + mv $pkgdir/usr/bin/ht $pkgdir/usr/bin/hte +} |