first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/libdvdread/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.cache/
dist/
root/

View File

@@ -0,0 +1,2 @@
# 6.1.3
First version

18
src/libdvdread/pkg.sh Normal file
View File

@@ -0,0 +1,18 @@
NAME="libdvdread"
DESC="Provides a simple foundation for reading DVDs"
VERSION="6.1.3"
FILES=("https://get.videolan.org/libdvdread/$VERSION/libdvdread-$VERSION.tar.bz2")
HASHES=("3c58d1624a71a16ff40f55dbaca82523")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
./configure --prefix=/usr \
--disable-static \
--docdir=/usr/share/doc/libdvdread-$VERSION
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -rf $NAME-$VERSION
}