Christoph Reiter 38126d763e makedepend on autotools for packages using configure
In some cases this will introduce cycles which could likely be cleaned
up by only depending on some unix tools instead of the whole autotools.

Rebuilding doesn't make much sense at this point since it just adds a subset
of base-devel which is still installed by default.
2021-12-12 14:20:50 +01:00

107 lines
2.5 KiB
Bash

# Maintainer: Alexey Pavlov <Alexpux@gmail.com>
pkgname=elinks-git
_ver_base=0.13
pkgver=0.13.4008.f86be659
pkgrel=8
epoch=
pkgdesc="Full-Featured Text WWW Browser (net-utils)"
arch=("i686" "x86_64")
url="http://elinks.cz/"
license=('GPL')
groups=('net-utils')
depends=('doxygen'
'gettext'
'libbz2'
'libcrypt'
'libexpat'
'libffi'
'libgc'
'libgcrypt'
'libgnutls'
#'libguile'
'libhogweed'
'libiconv'
'libidn'
'liblzma'
'libnettle'
'libp11-kit'
'libtasn1'
'libtre'
'libunistring'
'perl'
'python3'
'xmlto'
'zlib')
makedepends=('git'
'autotools'
'gettext-devel'
#'guile'
'libbz2-devel'
'libexpat-devel'
'libffi-devel'
'libgc-devel'
'libgcrypt-devel'
'libguile-devel'
'libgnutls-devel'
'libiconv-devel'
'libidn-devel'
'liblzma-devel'
'libnettle-devel'
'libp11-kit-devel'
'libtasn1-devel'
'libtre-devel'
'libunistring-devel'
'perl-devel'
'python-devel'
'zlib-devel')
provides=("elinks")
conflicts=("elinks")
_commit="f86be659718c0cd0a67f88b42f07044c23d0d028"
source=("${pkgname}"::"git+git://repo.or.cz/elinks.git#commit=${_commit}"
"msys-platform.patch"
"cygwin-deprecates.patch")
sha256sums=('SKIP'
'836437f4421efa3931e8401a7e1044836e7fe1e7016870d685e6992c71dc695c'
'dff243381d711e533eef9f75c861900783c0fe702697baa672cfaa67755a6ab8')
pkgver() {
cd ${srcdir}/${pkgname}
printf "%s.%s.%s" "$_ver_base" "$(git rev-list --count "${_commit}")" "$(git rev-parse --short "${_commit}")"
}
prepare() {
cd ${srcdir}/${pkgname}
patch -p1 -i ${srcdir}/msys-platform.patch
patch -p1 -i ${srcdir}/cygwin-deprecates.patch
./autogen.sh
}
build() {
cd ${srcdir}/${pkgname}
export PYTHON=/usr/bin/python3
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--build=${CHOST} \
--without-openssl \
--with-lzma \
--without-guile \
--with-perl \
--with-python \
--without-lua
make -j1
}
check() {
cd ${srcdir}/${pkgname}
make -j1 -k check
}
package() {
cd ${srcdir}/${pkgname}
make -j1 DESTDIR="$pkgdir/" install
rm -f $pkgdir/usr/share/locale/locale.alias
rm -f $pkgdir/usr/lib/charset.alias
}