aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable/PKGBUILD
blob: b813fcdedf6c8fd87039e847503dd01438f81ee0 (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.1
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=(5ea32e26bd31dd625e906663ce69b4531de6f616aa33dc244b9367ab9318bede)


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


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