aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable/PKGBUILD
blob: c0439afd615b338bc2c3f13c6ae8b6688ef7b8d3 (plain) (blame)
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)@member.fsf.org>

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


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


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