blob: e97d9c284482be0a2805fba7a8ca05dd53842a6c (
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
|
# Maintainer: Azael Reyes <azael.devel@gmail.com>
pkgname=octetos-db-maria
pkgver=1.10.7
pkgrel=2
pkgdesc="API to access database, MariaDB component."
arch=('x86_64')
license=('GPL')
url="https://github.com/azaeldevel/octetos-db"
depends=('octetos-db-abstract' 'mariadb-clients')
md5sums=('f8823bcfc62485d53453e447802dbfe8')
source=(https://github.com/azaeldevel/${pkgname}/archive/${pkgver}-alpha.tar.gz)
build() {
cd ${pkgname}-${pkgver}-alpha
autoreconf -fi
./configure --with-archlinux --with-mediumword --prefix=/usr --sysconfdir=/etc
make
}
package() {
cd ${pkgname}-${pkgver}-alpha
make DESTDIR="${pkgdir}" install
}
|