From 73386270dbbc1ee9eb60ff830f671ccbd984024a Mon Sep 17 00:00:00 2001 From: Jaroslav Lichtblau Date: Fri, 28 Nov 2014 20:17:14 +0100 Subject: [PATCH] Initial PKGBUILD status as of 28.11.2014 --- .SRCINFO | 14 ++++++++++++++ PKGBUILD | 24 ++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..2d7d20557017 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = swish-e + pkgdesc = Fast, flexible and free open source system for indexing collections of Web pages or other files. + pkgver = 2.4.7 + pkgrel = 1 + url = http://www.swish-e.org + arch = i686 + arch = x86_64 + license = custom + depends = libxml2 + source = http://www.swish-e.org/distribution/swish-e-2.4.7.tar.gz + md5sums = 736db7a65aed48bb3e2587c52833642d + +pkgname = swish-e + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..aac645529a94 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: Jaroslav Lichtblau + +pkgname=swish-e +pkgver=2.4.7 +pkgrel=1 +pkgdesc="Fast, flexible and free open source system for indexing collections of Web pages or other files." +arch=('i686' 'x86_64') +url="http://www.swish-e.org" +license=('custom') +depends=('libxml2') +source=(http://www.swish-e.org/distribution/$pkgname-$pkgver.tar.gz) + +md5sums=('736db7a65aed48bb3e2587c52833642d') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --with-zlib --prefix=/usr --mandir=/usr/share/man --libexecdir=/usr/lib + make || return 1 + make DESTDIR=${pkgdir} install + +#custom license + install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/COPYING || return 1 +}