summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Severance2015-09-19 04:05:52 -0400
committerChris Severance2015-09-19 04:05:52 -0400
commit5ad2956d4b186077c7c90f96d4ab283c7774ee84 (patch)
tree6b4b84dbff7bcd7b1662dc004fb43e79067420e1
parent506b232c2e8af0373d2ae2a619ce0f408e352fa5 (diff)
downloadaur-5ad2956d4b186077c7c90f96d4ab283c7774ee84.tar.gz
Bump pkgrel for ncurses 6
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD18
2 files changed, 10 insertions, 11 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 60199d3aceaa..5351c0b7fec0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,12 @@
pkgbase = le
pkgdesc = A text editor in memorial to Norton Editor with block and binary operations
pkgver = 1.15.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/lavv17/le
arch = i686
arch = x86_64
license = GPL3
+ makedepends = git
source = git://git.sv.gnu.org/gnulib
source = le-1.15.1.tar.gz::https://github.com/lavv17/le/archive/v1.15.1.tar.gz
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 56d7e1e96078..55d7ac62138e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,12 +8,13 @@ _gitauth='lavv17'
_pkgname='le'
pkgname="${_pkgname}"
pkgver=1.15.1
-pkgrel=1
+pkgrel=2
pkgdesc='A text editor in memorial to Norton Editor with block and binary operations'
arch=('i686' 'x86_64')
#url='https://directory.fsf.org/wiki/Le_editor'
url="https://github.com/${_gitauth}/${_pkgname}"
license=('GPL3')
+makedepends=('git')
_verwatch=("${url}/releases" "${url#*github.com}/archive/v\(.*\)\.tar\.gz" 'l')
_srcdir="${_pkgname}-${pkgver}"
#source=("http://fossies.org/linux/misc/${_pkgname}-${pkgver}.tar.xz")
@@ -24,7 +25,6 @@ sha256sums=('SKIP'
if [ "${pkgname%-git}" != "${pkgname}" ]; then # this is easily done with case
unset _verwatch
- makedepends=('git')
provides=("${_pkgname}=${pkgver%%.r*}")
conflicts=("${_pkgname}")
_srcdir="${_pkgname}"
@@ -42,14 +42,12 @@ fi
prepare() {
set -u
cd "${_srcdir}"
- if [ -z "${SKIP_PREPARE:-}" ]; then
- if [ -s 'autogen.sh' ]; then
- #chmod 770 "${srcdir}/gnulib/gnulib-tool"
- PATH="$PATH:${srcdir}/gnulib" \
- ./autogen.sh --prefix='/usr'
- else
- ./configure --prefix='/usr'
- fi
+ if [ -s 'autogen.sh' ]; then
+ #chmod 770 "${srcdir}/gnulib/gnulib-tool"
+ PATH="$PATH:${srcdir}/gnulib" \
+ ./autogen.sh --prefix='/usr'
+ else
+ ./configure --prefix='/usr'
fi
set +u
}