blob: edf32aa3bfa12dc55ddd2e5745f0ad3f12e546cf (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Maintainer: Chris Severance aur.severach aATt spamgourmet dott com
# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
# Contributor: Kiko <kikocorsentino@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
set -u
_pkgname='le'
pkgname="${_pkgname}"
pkgver='1.16.8'
pkgrel='1'
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/lavv17/${_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")
#source=("http://lav.yar.ru/download/le/${_pkgname}-${pkgver}.tar.gz")
source=(
'git://git.sv.gnu.org/gnulib'
"${_pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz"
)
md5sums=('SKIP'
'94a24b344084324f07ab1a4fd3181fda')
sha256sums=('SKIP'
'6c5a0e3bfbc522e57953f237269c1772283454fb6947f6257fde99d48ea9c3b1')
if [ "${pkgname%-git}" != "${pkgname}" ]; then # this is easily done with case
unset _verwatch
makedepends=('git')
provides=("${_pkgname}=${pkgver%%.r*}")
conflicts=("${_pkgname}")
_srcdir="${_pkgname}"
source=('git://git.sv.gnu.org/gnulib' "${url//https:/git:}.git")
sha256sums[0]='SKIP'
sha256sums[1]='SKIP'
pkgver() {
set -u
cd "${_srcdir}"
#printf "%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" | sed 's|-|.|g'
git describe --long | sed -e 's:^v::g' -e 's/\([^-]*-g\)/r\1/' -e 's/-/./g'
set +u
}
fi
build() {
set -u
cd "${_srcdir}"
if [ ! -s 'Makefile' ]; then
if [ -s 'autogen.sh' ]; then
#chmod 770 "${srcdir}/gnulib/gnulib-tool"
PATH="$PATH:${srcdir}/gnulib" \
./autogen.sh --prefix='/usr' CXX='g++'
else
./configure --prefix='/usr' CXX='g++'
fi
fi
nice make -s
set +u
}
package() {
set -u
depends=('gcc-libs' 'ncurses')
cd "${_srcdir}"
make -j1 DESTDIR="${pkgdir}" install
set +u
}
set +u
|