blob: 9a1a8f5fb34eec6612d5939ac175bfb2cb351202 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Dima Volkov <dimaac@bk.ru>
pkgname=dimanet
pkgver=1.3
pkgrel=1
pkgdesc="DimaNet is another bad integration of a neural network library written in ANSI C."
arch=('any')
url="https://github.com/dimalmfao/dimanet"
license=('GPL-3.0')
depends=('gcc')
source=("$pkgname-$pkgver.tar.gz::https://github.com/dimalmfao/dimanet/archive/master.tar.gz")
sha256sums=('bf89eb6c4188618d6873db83f277a713a5b7614edb1157ac12b063335b96fdfd')
build() {
cd "$srcdir/dimanet-master"
make compile lib
}
package() {
cd "$srcdir/dimanet-master"
make install DESTDIR="$pkgdir"
}
|