summaryrefslogtreecommitdiff
path: root/repo/libdvbpsi/libdvbpsi.xibuild
blob: 04ead0645283015678671c014ca2f6b44131542d (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
#!/bin/sh

NAME="libdvbpsi"
DESC="A library decoding and generating MPEG TS and DVB PSI tables"

MAKEDEPS="musl"

PKG_VER=1.3.3
SOURCE="https://download.videolan.org/pub/libdvbpsi/$PKG_VER/libdvbpsi-$PKG_VER.tar.bz2"

ADDITIONAL="
fix-includes.patch
"

prepare () {
    apply_patches
}

build() {
	./configure \
		--prefix=/usr \
		--enable-release \
		--disable-static
	make
}

package() {
	make DESTDIR="$PKG_DEST" install
}