blob: 857ee240e236000b75463e71c9d85393ba1e746c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: Rhinoceros <https://aur.archlinux.org/account/rhinoceros>
# Contributor: talavis <aur at talavis eu>
# Contributor: Kevin Dodd <jesin00 at gmail dot com>
pkgname=clustal-omega
pkgver=1.2.4
pkgrel=1
pkgdesc='Protein sequence alignment program'
arch=('i686' 'x86_64')
url='http://www.clustal.org/omega/'
license=('GPL-2.0-or-later')
depends=('glib2' 'argtable')
source=("http://www.clustal.org/omega/${pkgname}-${pkgver}.tar.gz")
options=(libtool staticlibs)
sha1sums=('9ff2c88df0f488de61f80d997198700407ac6c04')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr || return
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|