desktop/xine-ui/PKGBUILD

33 lines
823 B
Bash
Raw Normal View History

2010-11-03 01:35:39 +08:00
pkgname=xine-ui
2014-12-11 05:42:22 +08:00
pkgver=0.99.9
2017-02-21 21:29:31 +08:00
pkgrel=2
2010-11-03 01:35:39 +08:00
pkgdesc="A free video player for Unix"
2014-04-10 16:45:17 +08:00
arch=('x86_64')
2010-11-03 01:35:39 +08:00
license=('GPL')
url="http://www.xine-project.org"
depends=('xine-lib' 'curl' 'libxtst' 'libxinerama' 'libxv' 'libpng' 'libxft'
2013-07-27 21:04:53 +08:00
'xdg-utils' 'shared-mime-info' 'hicolor-icon-theme'
2017-02-21 21:29:31 +08:00
'lirc-utils' 'readline')
2010-11-03 01:35:39 +08:00
makedepends=('libxt')
categories=('multimedia')
2010-11-03 01:35:39 +08:00
options=('!emptydirs' '!strip')
install=${pkgname}.install
2013-07-27 21:04:53 +08:00
source=(http://downloads.sourceforge.net/xine/${pkgname}-${pkgver}.tar.xz)
2014-12-11 05:42:22 +08:00
sha1sums=('d4f4c17e93d984faa14e363db1320bf9cea7ebaf')
2010-11-03 01:35:39 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2013-07-27 21:04:53 +08:00
./configure --prefix=/usr \
--mandir=/usr/share/man \
--with-x \
--enable-lirc \
--without-aalib \
--enable-debug
2012-02-25 00:40:54 +08:00
make
2010-11-03 01:35:39 +08:00
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
2012-02-25 00:40:54 +08:00
make DESTDIR="${pkgdir}" install
2010-11-03 01:35:39 +08:00
}