summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6c7dfcd56916383c6a61be0c87bc55c0649f259a (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
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@kth.se>

pkgname=cmdipc
pkgver=1.3
pkgrel=3
pkgdesc="System V and POSIX IPC from the command line"
arch=(any)
url="https://github.com/maandree/cmdipc"
license=('GPL3' 'custom:GFDL1.3')
depends=(python3 python-posix_ipc python-sysv_ipc argparser-python)
makedepends=(make sed zip texinfo)
install=cmdipc.install
source=($url/archive/$pkgver.tar.gz)
sha256sums=(1f1eb0e18678140ef7b0f1f30ae11ec8aef8357aec61fd67fb0129fe5bd8d70b)


build() {
  cd "$srcdir/$pkgname-$pkgver"
  make PREFIX=/usr
}


package() {
  cd "$srcdir/$pkgname-$pkgver"
  make PREFIX=/usr install DESTDIR="$pkgdir"
}