forked from enlightenment/enlightenment
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.
38 lines
1.3 KiB
38 lines
1.3 KiB
10 years ago
|
# Maintainer: Enlightenment Developers <enlightenment-devel@enlightenment.org>>
|
||
|
|
||
|
pkgname=enlightenment
|
||
|
pkgver=@VERSION@
|
||
|
pkgrel=1
|
||
|
pkgdesc="Enlightenment window manager - GIT development snapshot"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.enlightenment.org"
|
||
|
license=('BSD')
|
||
|
depends=('elementary' 'xcb-util-keysyms' 'hicolor-icon-theme'
|
||
|
'desktop-file-utils' 'udisks2' 'ttf-font' 'bluez-libs')
|
||
|
optdepends=('connman: network module')
|
||
|
provides=("enlightenment17=$pkgver" 'notification-daemon')
|
||
|
conflicts=("enlightenment17")
|
||
|
backup=('etc/enlightenment/sysactions.conf'
|
||
|
'etc/xdg/menus/enlightenment.menu')
|
||
|
options=('!libtool' 'debug')
|
||
|
install=enlightenment.install
|
||
|
|
||
|
build() {
|
||
|
cd "../.."
|
||
|
export CFLAGS="$CFLAGS -fvisibility=hidden -fomit-frame-pointer"
|
||
|
[[ -e Makefile ]] && make clean distclean
|
||
|
./configure --prefix=/usr --sysconfdir=/etc
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "../.."
|
||
|
make -j1 DESTDIR="$pkgdir" install
|
||
|
install -Dm644 AUTHORS "$pkgdir/usr/share/$pkgname/AUTHORS"
|
||
|
install -Dm644 ChangeLog "$pkgdir/usr/share/$pkgname/ChangeLog"
|
||
|
install -Dm644 NEWS "$pkgdir/usr/share/$pkgname/NEWS"
|
||
|
install -Dm644 README "$pkgdir/usr/share/$pkgname/README"
|
||
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
||
|
ln -sf "../licenses/$pkgname/COPYING" "$pkgdir/usr/share/$pkgname/COPYING"
|
||
|
}
|