mirror of
https://github.com/archlinux/aur.git
synced 2026-03-06 00:02:47 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
73386270db
2 changed files with 38 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
|
@ -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
|
||||
|
||||
24
PKGBUILD
Normal file
24
PKGBUILD
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
|
||||
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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue