first commit
This commit is contained in:
3
src/libass/.gitignore
vendored
Normal file
3
src/libass/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libass/changes.md
Normal file
2
src/libass/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.17.1
|
||||
First version
|
16
src/libass/pkg.sh
Normal file
16
src/libass/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user