updated on Wed Jan 25 00:20:47 UTC 2012
[aur-mirror.git] / svm_light / PKGBUILD
blobebf1e60c7689cb97ea2d6a04be2f577f23efd333
1 # Maintainer: Bart Verhoeven <nepherte at archlinux dot us>
3 pkgname=svm_light
4 pkgver=6.02
5 pkgrel=2
6 pkgdesc="Implementation of Vapnik's SVM for the problem of pattern recognition, regression and learning a ranking function."
7 arch=('i686' 'x86_64')
8 license=('custom')
9 depends=('glibc')
10 makedepends=()
11 url="http://svmlight.joachims.org/"
12 source=("http://download.joachims.org/svm_light/current/$pkgname.tar.gz")
13 md5sums=('59768adde96737b1ecef123bc3a612ce')
15 build() {
16     cd $srcdir/
17     make
20 package() {
21   cd $srcdir
23   install -d -m755 $pkgdir/usr/bin
24   install -d -m755 $pkgdir/usr/share/licenses/$pkgname
25   install -m755 svm_learn $pkgdir/usr/bin
26   install -m755 svm_classify $pkgdir/usr/bin
27   install -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname