mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
Most of these updates is based on data from https://repology.org/, detection based on permanent redirect from http:// to https://. $source urls are updated when they contain $url as substring.
54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
# Contributor: Timo Teräs <timo.teras@iki.fi>
|
|
# Maintainer: Timo Teräs <timo.teras@iki.fi>
|
|
pkgname=libe-book
|
|
pkgver=0.1.2
|
|
pkgrel=5
|
|
pkgdesc="Import filter and tools for various ebook formats"
|
|
url="https://sourceforge.net/projects/libebook/"
|
|
arch="all"
|
|
license="MPL2"
|
|
depends=""
|
|
depends_dev="boost-dev icu-dev librevenge-dev libxml2-dev zlib-dev"
|
|
makedepends="$depends_dev doxygen gperf"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-tools"
|
|
source="http://downloads.sourceforge.net/project/libebook/libe-book-$pkgver/libe-book-$pkgver.tar.bz2"
|
|
|
|
builddir="$srcdir"/libe-book-$pkgver
|
|
|
|
prepare() {
|
|
default_prepare || return 1
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
# boost-1.59
|
|
export CPPFLAGS=-DBOOST_ERROR_CODE_HEADER_ONLY
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--disable-werror \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
tools() {
|
|
mkdir -p "$subpkgdir"/usr
|
|
mv "$pkgdir"/usr/bin "$subpkgdir"/usr
|
|
}
|
|
|
|
md5sums="6b48eda57914e6343efebc9381027b78 libe-book-0.1.2.tar.bz2"
|
|
sha256sums="b710a57c633205b933015474d0ac0862253d1c52114d535dd09b20939a0d1850 libe-book-0.1.2.tar.bz2"
|
|
sha512sums="82982874f9c0f5e400166e9367a4b6017cf11bbd69e2e79240137385a5d68ddea08f13676f8c5d0e983f441de17cda9f4b5f7c90c5cb3515e319de638edf3a38 libe-book-0.1.2.tar.bz2"
|