2016-03-02 16:12:51 +01:00
|
|
|
# Description: The libxfce4ui package contains GTK+ 2 widgets that are used by other Xfce applications.
|
|
|
|
# URL: http://www.xfce.org/projects/libraries/
|
|
|
|
# Packager: tyrry at nutyx dot org
|
2016-04-03 17:09:19 +02:00
|
|
|
# Depends on: gtk2 gtk3 startup-notification xfce4-conf
|
2016-03-02 16:12:51 +01:00
|
|
|
|
|
|
|
_name=libxfce4ui
|
|
|
|
|
|
|
|
name=xfce4-libui
|
|
|
|
version=4.12.1
|
|
|
|
release=2
|
|
|
|
|
|
|
|
source=(http://archive.xfce.org/src/xfce/${_name}/${version%.*}/${_name}-$version.tar.bz2)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${_name}-$version
|
2016-04-03 17:09:19 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--libexecdir=/usr/lib \
|
2016-03-02 16:12:51 +01:00
|
|
|
--localstatedir=/var \
|
|
|
|
--disable-static \
|
2016-04-03 17:09:19 +02:00
|
|
|
--disable-debug
|
2016-03-02 16:12:51 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2016-04-03 17:09:19 +02:00
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
2016-03-02 16:12:51 +01:00
|
|
|
for i in usr/bin/xfce4-about usr/share/applications/xfce4-about.desktop usr/share/icons/hicolor/48x48/apps/xfce4-logo.png
|
|
|
|
do rm $PKG/$i
|
|
|
|
done
|
|
|
|
}
|