summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle Keen2015-09-05 21:12:55 -0400
committerKyle Keen2015-09-05 21:12:55 -0400
commit715c13f03970d777153e7bbe0e701983e4a3354e (patch)
treeeeb402559cec29929e361b777913f632b53dd767
parent43914a24225b3dbec7c47d4699d341f131710a09 (diff)
downloadaur-715c13f03970d777153e7bbe0e701983e4a3354e.tar.gz
update to 1.58, new urls
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD18
2 files changed, 15 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 480ab5b5088d..e86c71d9681b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,16 +1,16 @@
pkgbase = hexcurse
pkgdesc = Versatile ncurses-based hex editor.
- pkgver = 1.55
- pkgrel = 3
- url = http://directory.fsf.org/project/HexCurse/
+ pkgver = 1.58
+ pkgrel = 1
+ url = https://github.com/LonnyGomes/hexcurse
arch = i686
arch = x86_64
license = GPL
depends = ncurses>=5.6-7
options = !makeflags
- source = http://gd.tuwien.ac.at/opsys/linux/gentoo/distfiles/hexcurse-1.55.tar.gz
+ source = https://github.com/LonnyGomes/hexcurse/archive/hexcurse-1.58.tar.gz
source = hexcurse-alloca.patch
- md5sums = c9f9485490300b5111aa429eabfef789
+ md5sums = 26c3ccf56850ff030d5097ee4bbc2b0b
md5sums = fb7723bff0411392fe410839f6105e4f
pkgname = hexcurse
diff --git a/PKGBUILD b/PKGBUILD
index 9ba2f5402d56..82f475a47739 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,24 +2,26 @@
# Contributor: eric <eric@archlinux.org>
pkgname=hexcurse
-pkgver=1.55
-pkgrel=3
+pkgver=1.58
+pkgrel=1
pkgdesc="Versatile ncurses-based hex editor."
arch=('i686' 'x86_64')
-url="http://directory.fsf.org/project/HexCurse/"
+#url="http://directory.fsf.org/project/HexCurse/"
+url="https://github.com/LonnyGomes/hexcurse"
license=('GPL')
depends=('ncurses>=5.6-7')
options=('!makeflags')
-source=("http://gd.tuwien.ac.at/opsys/linux/gentoo/distfiles/$pkgname-$pkgver.tar.gz"
+source=("https://github.com/LonnyGomes/hexcurse/archive/hexcurse-$pkgver.tar.gz"
"hexcurse-alloca.patch")
#source=("http://www.sourcefiles.org/Editors/Hex/$pkgname-$pkgver.tar.gz")
-md5sums=('c9f9485490300b5111aa429eabfef789'
+#source=("http://gd.tuwien.ac.at/opsys/linux/gentoo/distfiles/$pkgname-$pkgver.tar.gz"
+md5sums=('26c3ccf56850ff030d5097ee4bbc2b0b'
'fb7723bff0411392fe410839f6105e4f')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir/$pkgname-$pkgname-$pkgver"
- patch -p0 < ../hexcurse-alloca.patch
+ #patch -p0 < ../hexcurse-alloca.patch
./configure \
--prefix=/usr \
@@ -29,7 +31,7 @@ build() {
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir/$pkgname-$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}