mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 07:37:16 +08:00
27 lines
667 B
Bash
27 lines
667 B
Bash
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: G_Syme <demichan(at)mail(dot)upb(dot)de>
|
|
|
|
pkgname=libass
|
|
pkgver=0.10.0
|
|
pkgrel=1
|
|
pkgdesc="A portable library for SSA/ASS subtitles rendering"
|
|
arch=('i686' 'x86_64')
|
|
url="http://code.google.com/p/libass/"
|
|
license=('GPL')
|
|
depends=('enca' 'fontconfig' 'fribidi')
|
|
makedepends=('pkgconfig')
|
|
options=(!libtool)
|
|
source=(http://libass.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('05cc8cc5eb4265b55ab0821f0825b719')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|