summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d419250736a4ed54d1d137bf6128e41e55e1ad25 (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: Azael Reyes <azael.devel@gmail.com>


pkgname=octetos-db-abstract
pkgver=0.6.0
pkgrel=1
pkgdesc="API to access database, abstract component."
arch=('x86_64')
license=('GPL')
url="https://github.com/azaeldevel/octetos-db-abstract"
depends=('octetos-core')
#backup=('etc/nanorc')
md5sums=('1ac1e74d3562078bf430c6570323501e')
source=(https://github.com/azaeldevel/${pkgname}/archive/${pkgver}-alpha.tar.gz)

build() {
    cd ${pkgname}-${pkgver}-alpha
    autoreconf -fi
    ./configure --prefix=/usr --sysconfdir=/etc
    make
}

package() {
  cd ${pkgname}-${pkgver}-alpha
  make DESTDIR="${pkgdir}" install
}