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/libass/.gitignore vendored Normal file
View File

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

2
src/libass/changes.md Normal file
View File

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

16
src/libass/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
NAME="libass"
DESC="Portable subtitle renderer for the ASS/SSA"
VERSION="0.17.1"
FILES=("https://github.com/libass/libass/releases/download/$VERSION/libass-$VERSION.tar.xz")
HASHES=("73f00a898161be424e05d4bee1962dbb")
DEPENDS=("freetype" "fribidi" "fontconfig" "harfbuzz")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr --disable-static
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}