first commit
This commit is contained in:
3
src/xine-lib/.gitignore
vendored
Normal file
3
src/xine-lib/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/xine-lib/changes.md
Normal file
2
src/xine-lib/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.2.13
|
||||
First version
|
27
src/xine-lib/pkg.sh
Normal file
27
src/xine-lib/pkg.sh
Normal file
@ -0,0 +1,27 @@
|
||||
NAME="xine-lib"
|
||||
DESC="Libraries useful for interfacing with external plug-ins that allow the flow of information from the source to the audio and video hardware"
|
||||
VERSION="1.2.13"
|
||||
FILES=("https://downloads.sourceforge.net/xine/xine-lib-$VERSION.tar.xz")
|
||||
HASHES=("9e1be39857b7a3cd7cc0f2b96331ff22")
|
||||
DEPENDS=(
|
||||
"ffmpeg" "alsa-lib" "pulseaudio"
|
||||
"libdvdnav"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--disable-vcd \
|
||||
--with-external-dvdnav \
|
||||
--docdir=/usr/share/doc/xine-lib-$VERSION
|
||||
doxygen doc/Doxyfile
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
install -v -m755 -d "$ROOTDIR/usr/share/doc/xine-lib-$VERSION/api"
|
||||
install -v -m644 doc/api/* \
|
||||
"$ROOTDIR/usr/share/doc/xine-lib-$VERSION/api"
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user