diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2013-05-30 22:37:19 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2013-05-30 22:37:19 +1000 |
commit | 0884bab7a382723f5c9e68453028119e6a87eb1c (patch) | |
tree | e8a6e3dbc96a8bd1ce74535ee56c1eebc0152c3a /libass | |
parent | 67f94d4a45617db172f2b7cd8d6748dc0b77e302 (diff) | |
download | contrib-0884bab7a382723f5c9e68453028119e6a87eb1c.tar.gz contrib-0884bab7a382723f5c9e68453028119e6a87eb1c.tar.xz |
libass: inital import
Diffstat (limited to 'libass')
-rw-r--r-- | libass/.footprint | 13 | ||||
-rw-r--r-- | libass/.md5sum | 1 | ||||
-rw-r--r-- | libass/Pkgfile | 17 |
3 files changed, 31 insertions, 0 deletions
diff --git a/libass/.footprint b/libass/.footprint new file mode 100644 index 000000000..b12e620f7 --- /dev/null +++ b/libass/.footprint @@ -0,0 +1,13 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/ass/ +-rw-r--r-- root/root usr/include/ass/ass.h +-rw-r--r-- root/root usr/include/ass/ass_types.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libass.a +-rwxr-xr-x root/root usr/lib/libass.la +lrwxrwxrwx root/root usr/lib/libass.so -> libass.so.4.1.0 +lrwxrwxrwx root/root usr/lib/libass.so.4 -> libass.so.4.1.0 +-rwxr-xr-x root/root usr/lib/libass.so.4.1.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libass.pc diff --git a/libass/.md5sum b/libass/.md5sum new file mode 100644 index 000000000..b6448f013 --- /dev/null +++ b/libass/.md5sum @@ -0,0 +1 @@ +0f54b1f3a24fa897ebbbcc5bc744b32a libass-0.10.1.tar.xz diff --git a/libass/Pkgfile b/libass/Pkgfile new file mode 100644 index 000000000..3aeef1229 --- /dev/null +++ b/libass/Pkgfile @@ -0,0 +1,17 @@ +# Description: A portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format. +# URL: http://code.google.com/p/libass/ +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com +# Packager: Matt Housh, jaeger at morpheus dot net +# Depends on: fribidi freetype fontconfig harfbuzz + +name=libass +version=0.10.1 +release=1 +source=(http://libass.googlecode.com/files/$name-$version.tar.xz) + +build() { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} |