Initial commit

This commit is contained in:
Nemo 2017-10-02 01:58:28 +05:30
commit df5a6fd3f5
2 changed files with 52 additions and 0 deletions

20
.SRCINFO Normal file
View File

@ -0,0 +1,20 @@
pkgbase = elibsrv
pkgdesc = a light OPDS library server for EPUB and PDF ebooks
pkgver = 20170325
pkgrel = 1
url = http://elibsrv.sourceforge.net/
arch = x86_64
arch = i686
license = GPL
depends = ebook-tools
depends = php
depends = sqlite
depends = php-sqlite
depends = php-gd
optdepends = kindlegen
optdepends = poppler
source = http://downloads.sourceforge.net/sourceforge/elibsrv/elibsrv-20170325.tar.xz
sha256sums = 2530853a48c542876eef719240d3bb3b28132e76090dbe56a902d80d2f08ddb2
pkgname = elibsrv

32
PKGBUILD Normal file
View File

@ -0,0 +1,32 @@
# Maintainer: Nemo <archlinux at captnemo dot in>
pkgname=elibsrv
pkgver=20170325
pkgrel=1
pkgdesc="a light OPDS library server for EPUB and PDF ebooks"
arch=('x86_64' 'i686')
url="http://elibsrv.sourceforge.net/"
license=('GPL')
depends=('ebook-tools' 'php' 'sqlite' 'php-sqlite' 'php-gd')
optdepends=('kindlegen' 'poppler')
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz")
sha256sums=('2530853a48c542876eef719240d3bb3b28132e76090dbe56a902d80d2f08ddb2')
build() {
cd "$pkgname-$pkgver/backend"
make elibsrv
}
package() {
cd "$pkgname-$pkgver"
mkdir -p "$pkgdir/var/lib/elibsrv/cache"
mkdir -p "$pkgdir/usr/share/webapps/elibsrv"
mkdir -p "$pkgdir/usr/local/bin"
mkdir -p "$pkgdir/etc"
cp "backend/elibsrv" "$pkgdir/usr/local/bin/elibsrv"
sed -i "/dbfile/c\dbfile = /var/lib/elibsrv/elibsrv.db" "etc/elibsrv.conf"
sed -i "/thumbdir/c\thumbdir = /var/lib/elibsrv/cache" "etc/elibsrv.conf"
sed -i "/kindlegen/c\kindlegen = /usr/bin/kindlegen" "etc/elibsrv.conf"
touch "$pkgdir/var/lib/elibsrv.db"
cp etc/elibsrv.conf "$pkgdir/etc/elibsrv.conf"
cp -r frontend/* "$pkgdir/usr/share/webapps/elibsrv/"
}