22 lines
559 B
Plaintext
22 lines
559 B
Plaintext
# Description: MS-Explorer or Commander like file manager for X.
|
|
# URL: http://roland65.free.fr/xfe
|
|
# Maintainer: <roland65 at free dot fr>
|
|
# Packager: pierre at nutyx dot org, tnut at nutyx dot org
|
|
# Depends on: freetype fox libpng libjpeg-turbo libtiff expat intltool
|
|
|
|
name=xfe
|
|
version=1.41
|
|
release=1
|
|
|
|
source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
|
|
build() {
|
|
cd $name-$version
|
|
export CFLAGS="$CFLAGS `pkg-config --cflags freetype2`"
|
|
aclocal
|
|
automake --add-missing
|
|
autoreconf
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|