Rage video and audio player
https://www.enlightenment.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
996 B
34 lines
996 B
10 years ago
|
# Maintainer: Enlightenment Developers <enlightenment-devel@enlightenment.org>
|
||
|
pkgname=rage
|
||
|
pkgver=@VERSION@
|
||
|
pkgrel=1
|
||
|
pkgdesc="Video player for Enlightenment - GIT development snapshot"
|
||
|
arch=('i686' 'x86_64' 'arm')
|
||
|
url="http://www.enlightenment.org"
|
||
|
license=('BSD')
|
||
|
depends=('elementary' 'efl')
|
||
|
options=('!libtool' 'debug')
|
||
|
build() {
|
||
|
cd "../.."
|
||
|
export CFLAGS="$CFLAGS -fvisibility=hidden -fomit-frame-pointer"
|
||
|
[[ -e Makefile ]] && make clean distclean
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
#check() {
|
||
|
# cd "../.."
|
||
|
# make -k check
|
||
|
#}
|
||
|
|
||
|
package() {
|
||
|
cd "../.."
|
||
|
make -j1 DESTDIR="$pkgdir/" install
|
||
|
install -Dm644 README "$pkgdir/usr/share/$pkgname/README"
|
||
|
install -Dm644 NEWS "$pkgdir/usr/share/$pkgname/NEWS"
|
||
|
install -Dm644 ChangeLog "$pkgdir/usr/share/$pkgname/ChangeLog"
|
||
|
install -Dm644 AUTHORS "$pkgdir/usr/share/$pkgname/AUTHORS"
|
||
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
||
|
ln -s ../licenses/$pkgname/COPYING "$pkgdir/usr/share/$pkgname/COPYING"
|
||
|
}
|