31 lines
793 B
Plaintext
31 lines
793 B
Plaintext
# Description: Deprecated widget library for the Xfce desktop environment
|
|
# URL: http://www.xfce.org
|
|
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
|
|
# Packager: Juergen Daubert, juergen dot daubert at t-online dot de
|
|
# Depends on: gtk libglade startup-notification xfconf
|
|
# Group: xfce4
|
|
|
|
name=libxfcegui4
|
|
version=4.10.0
|
|
release=2
|
|
source=(http://archive.xfce.org/src/xfce/$name/${version%.*}/$name-$version.tar.bz2 \
|
|
no-xfce_setenv.patch)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
patch -p0 -i $SRC/no-xfce_setenv.patch
|
|
|
|
sed -e '/^AC_PROG_INTLTOOL/d' -i configure.in
|
|
sed -e '/^SUBDIRS/s/po//' -i Makefile.in
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--disable-debug
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{locale,gtk-doc}
|
|
}
|