blob: d69b1362072c9d344411ceb539b1aa194b7ea26c (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Maintainer: Thomas <python-libseccomp AT spam DOT b2ag DOT de>
# Contributor: Chocobo1 <chocobo1 AT archlinux DOT net>
# Contributor: Lex Black <autumn-wind at web dot de>
# Contributor: Daniel Micay <danielmicay@gmail.com>
pkgname=python-libseccomp-git
pkgver=2.3.3.r121.g8ad3638
pkgrel=1
pkgdesc="Python bindings for libseccomp"
arch=('i686' 'x86_64')
url="https://github.com/seccomp/libseccomp"
license=('LGPL')
depends=('python')
makedepends=('git' 'cython')
provides=('python-libseccomp')
conflicts=('python-libseccomp')
source=("git+https://github.com/seccomp/libseccomp.git")
sha256sums=('SKIP')
pkgver() {
cd "libseccomp"
_tag=$(git tag -l --sort -v:refname | sed -n '1,1{s/v//p}')
_rev=$(git rev-list --count v$_tag..HEAD)
_hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash"
}
build() {
cd "libseccomp"
./autogen.sh
./configure --enable-python --prefix="/usr"
make
}
package() {
cd "libseccomp"
make DESTDIR="$pkgdir" install
rm -r "$pkgdir/usr/bin"
rm -r "$pkgdir/usr/include"
rm -r "$pkgdir/usr/share"
rm -r "$pkgdir/usr/lib/pkgconfig"
rm "$pkgdir/usr/lib/libseccomp"*
rm "$pkgdir/usr/lib/python"*"/site-packages/libseccomp/install_files.txt"
strip "$pkgdir/usr/lib/python"*"/site-packages/libseccomp/"*".so"
}
|