mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 13:07:14 +08:00
40 lines
1.0 KiB
Bash
40 lines
1.0 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=xine-ui
|
|
pkgver=0.99.7
|
|
pkgrel=2
|
|
pkgdesc="A free video player for Unix"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://www.xine-project.org"
|
|
depends=('xine-lib' 'curl' 'libxtst' 'libxinerama' 'libxv' 'libpng' 'libxft'
|
|
'libxxf86vm' 'readline' 'xdg-utils' 'shared-mime-info' 'hicolor-icon-theme'
|
|
'lirc-utils' 'desktop-file-utils' 'libjpeg-turbo')
|
|
makedepends=('libxt')
|
|
categories=('multimedia')
|
|
options=('!emptydirs' '!strip')
|
|
install=${pkgname}.install
|
|
source=("http://downloads.sourceforge.net/xine/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('2af6fcc2ad6af6ba2e471497c5d140dc')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--with-x \
|
|
--enable-lirc \
|
|
--without-aalib \
|
|
--enable-debug
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" desktopdir=/usr/share/applications install
|
|
}
|