summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 06293d15bd696a3511a45844419d93bf00e4c981 (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
27
28
# Maintainer: bar0metr <admin@os-admin.ru>
pkgname=ecap-adapter-sample
_pkgname=ecap_adapter_sample
pkgver=1.0.0
pkgrel=1
pkgdesc='The sample contains three basic adapters (minimal,passthru,modifying,async). Include patches for successful compile and use `modifying` adapter to modify the contents of the whole file'
arch=('x86_64')
url='http://www.e-cap.org/archive/ecap_adapter_sample-1.0.0.tar.gz'
provides=("$pkgname")
conflicts=("$pkgname")
source=("$pkgname::$url")
depends=('libecap')
license=('GPL')

sha256sums=('SKIP')

build() {
  cd "$srcdir/$_pkgname-$pkgver"
  chmod +x ./configure
  ./configure
  make -j$(nproc)
}

package() {
  cd "$srcdir"
  make -C "$_pkgname-$pkgver" DESTDIR="$pkgdir" install
}