blob: 9ba46936e5dab6c746ba451ecede40669f6c5ca4 (
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
|
#!/bin/sh
NAME="miniupnpc"
DESC="Library and tool to control NAT in UPnP-enabled routers"
MAKEDEPS="python"
PKG_VER=2.2.3
SOURCE="http://miniupnp.free.fr/files/miniupnpc-$PKG_VER.tar.gz"
ADDITIONAL="
fix-makefile-install.patch
"
prepare () {
apply_patches
}
build() {
make
python3 setup.py build
}
check() {
make check
}
package() {
make DESTDIR="$PKG_DEST" PREFIX=/usr install
}
|