29 lines
665 B
Plaintext
29 lines
665 B
Plaintext
# Tanım: Xfwm4, Xfce için pencere yöneticisi.
|
||
# URL: http://www.xfce.org/projects/xfwm4/
|
||
# Paketçi: milisarge
|
||
# Gerekler: xorg-libxres libwnck xfce4-libui xfce4-libutil startup-notification
|
||
|
||
_name=xfwm4
|
||
name=xfce4-wm
|
||
version=4.12.3
|
||
release=1
|
||
|
||
source=(http://archive.xfce.org/src/xfce/${_name}/${version%.*}/${_name}-$version.tar.bz2)
|
||
|
||
build() {
|
||
cd ${_name}-$version
|
||
./configure \
|
||
--prefix=/usr \
|
||
--sysconfdir=/etc \
|
||
--libexecdir=/usr/lib \
|
||
--localstatedir=/var \
|
||
--disable-static \
|
||
--enable-startup-notification \
|
||
--enable-randr \
|
||
--enable-compositor \
|
||
--enable-xsync \
|
||
--disable-debugr
|
||
make
|
||
make DESTDIR=$PKG install
|
||
}
|