blob: 99702a875e278dd5ded1a51e40fa4ea6a152290d (
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
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=libnetfilter_cthelper-git
pkgver=1.0.0.r11.g25439d7
pkgrel=1
pkgdesc="Library that provides access to the user-space helper infrastructure"
arch=('i686' 'x86_64')
url="https://netfilter.org/projects/libnetfilter_cthelper/index.html"
license=('GPL')
depends=('libmnl')
makedepends=('git')
provides=("libnetfilter_cthelper=$pkgver")
conflicts=('libnetfilter_cthelper')
source=("git://git.netfilter.org/libnetfilter_cthelper")
sha256sums=('SKIP')
pkgver() {
cd "libnetfilter_cthelper"
git describe --long --tags | sed 's/^libnetfilter_cthelper-//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "libnetfilter_cthelper"
autoreconf -fi
./configure \
--prefix="/usr"
make
}
package() {
cd "libnetfilter_cthelper"
make DESTDIR="$pkgdir" install
}
|